-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "job-queue",
"version": "1.0.0",
"description": "Job Queue Application",
"main": "main.js",
"scripts": {
"test": "mocha",
"start": "node main.js",
"build": "webpack -p --progress --mode production",
"dev": "webpack --progress --color --watch --mode development & nodemon --watch components"
},
"author": "Thomas P. Matecki",
"license": "ISC",
"peerDependencies": {
"react": "16.x.x",
"react-dom": "16.x.x "
},
"dependencies": {
"babel-cli": "6.x.x",
"babel-preset-env": "1.x.x",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"boom": "^7.2.0",
"hapi": "^17.2.3",
"hapi-pino": "^4.0.3",
"hapi-plugin-websocket": "^2.0.4",
"hapi-react-views": "^10.0.0",
"inert": "^5.1.0",
"jshint": "^2.9.5",
"mocha": "^5.0.5",
"mock-websocket": "0.0.4",
"socket.io-client": "^2.1.0",
"vision": "^5.3.2",
"ws": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"material-ui": "^0.20.0",
"nodemon": "^1.17.2",
"nyc": "^11.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"rxjs": "^5.5.8",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13"
}
}