-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "dataface-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint-staged": "lint-staged",
"dev": "NODE_ENV=development nodemon ./bin/www",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.4"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.7",
"debug": "^4.3.4",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"supertest": "^6.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}