-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 616 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 616 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
{
"name": "multi-stage-test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "../node_modules/nodemon/bin/nodemon.js ./bin/www --inspect=0.0.0.0:9229",
"test": "mocha --timeout 10000 --exit"
},
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"debug": "^4.1.1",
"express": "^4.21.2",
"hbs": "^4.0.6",
"morgan": "^1.10.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^9.39.1",
"mocha": "^11.7.5",
"nodemon": "^2.0.20"
}
}