-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "server",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"postinstall": "patch-package",
"lint": "eslint .",
"start": "node ./bin/www",
"test": "mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"log-timestamp": "^0.3.0",
"morgan": "^1.10.0",
"pa11y": "^5.3.1",
"pa11y-runner-htmlcs": "^1.2.1",
"serve-favicon": "^2.5.0",
"simplecrawler": "^1.1.9",
"valid-url": "^1.0.9",
"ws": "^7.4.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"debug": "^4.3.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"grunt": "^1.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-develop": "^0.4.0",
"load-grunt-tasks": "^5.1.0",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"patch-package": "^6.4.7",
"request": "^2.88.2",
"socket.io-client": "^2.3.0",
"supertest": "^4.0.0",
"time-grunt": "^2.0.0"
}
}