-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 924 Bytes
/
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
{
"name": "express-test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint": "eslint .",
"test": "npm run start & sleep 2 && mocha --reporter spec -r jsdom-global/register"
},
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"debug": "~2.6.9",
"ejs": "^3.1.3",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"http-proxy-middleware": "^1.0.4",
"mocha": "^8.1.2",
"moment": "^2.27.0",
"morgan": "~1.9.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"request": "^2.88.2"
}
}