-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "node-app-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npx nodemon --exec babel-node ./bin/www",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . -o ./__tests__/eslint.html -f html; exit 0"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "^4.3.4",
"express": "~4.18.2",
"express-validator": "^6.14.2",
"http-errors": "~2.0.0",
"morgan": "~1.10.0",
"pug": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"regenerator-runtime": "^0.13.11",
"supertest": "^6.3.3"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules",
"package.json"
],
"verbose": true,
"watch": [
"public",
"routes",
"views",
"app.js"
],
"env": {
"NODE_ENV": "development",
"DEBUG": "node-app-starter:*"
},
"ext": "js,json,css,pug,www"
},
"jest": {
"verbose": true
}
}