-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "openweathermap-backend",
"version": "0.0.1",
"description": "A simple nodejs demo backend, application.",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive --exit --timeout 8000 ./test/",
"test-integration": "mocha --exit --timeout 8000 ./test/integration/",
"test-unit": "mocha --exit ./test/unit/",
"start": "node src/index.js",
"debug": "node --inspect src/index.js",
"lint": "eslint --format html -o ./eslint-report.html ."
},
"author": "lollotech",
"type": "module",
"license": "ISC",
"dependencies": {
"@vscode/sqlite3": "^5.0.7",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"http-client": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.1",
"mocha": "^10.0.0",
"node-fetch": "^3.2.0",
"sinon": "^14.0.0",
"sqlite3": "^5.0.2",
"whatwg-fetch": "^3.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-xo": "^0.39.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0"
}
}