-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
60
61
62
63
{
"name": "chaos-monkey",
"version": "0.7.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:manual": "npm run build:ui && nodemon ./tests/manual-testing-with-simple-web-app/index.js",
"start": "node ./index.js",
"start:dev": "npm run build:ui && nodemon ./index.js",
"build:ui": "npm install --prefix ui && npm run build --prefix ui",
"serve": "concurrently \"npm run build:ui\" \"npm run start\"",
"start:app": "npm run build:ui && npm run start",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/i0natan/node-chaos-monkey"
},
"dependencies": {
"@types/on-finished": "^2.3.1",
"@types/socket.io": "^2.1.2",
"@types/underscore": "^1.8.14",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-remove-route": "^1.0.0",
"object-sizeof": "^1.2.0",
"on-finished": "^2.3.0",
"socket-io": "^1.0.0",
"socket.io": "^2.1.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/eslint": "^4.16.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0",
"nodemon": "^1.18.4"
},
"eslintIgnore": [
"node_modules",
"build"
],
"peerDependencies": {
"express": "4.x"
},
"engines": {
"node": ">=8.15.0"
}
}