-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 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
{
"name": "webtech-2-assignment-backend",
"version": "1.0.0",
"dependencies": {
"express": "4.16.4",
"path": "0.12.7",
"body-parser": "1.18.3",
"mongodb": "3.1.13",
"assert": "1.4.1",
"winston": "3.2.1",
"debug": "2.6.9",
"morgan": "1.9.0"
},
"scripts": {
"preinstall": "cd client && npm install && cd ..",
"prestart": "cd client && npm run build && cd ..",
"start": "node server/server.js",
"test": "mocha src/test/**/*.js --timeout 20000 --require mocha-steps --exit",
"posttest": "cd client && npm test && cd .."
},
"devDependencies": {
"mocha": "6.0.2",
"mocha-steps": "1.3.0",
"chai": "4.1.2",
"chai-http": "4.0.0"
}
}