-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 985 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 985 Bytes
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
{
"name": "express-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "cross-env NODE_ENV=test jest",
"test:cover": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint --ext .js",
"lint:fix": "eslint ./ --fix --ext .js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-validator": "^7.2.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"mysql2": "^3.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"supertest": "^6.3.3"
}
}