-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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
64
{
"name": "test",
"version": "0.1.0",
"scripts": {
"development": "npm run clean && nodemon . & NODE_ENV=development webpack --watch",
"start": "npm run serve",
"serve": "forever .",
"clean": "rimraf ./server/public/",
"production": "npm run clean && NODE_ENV=production webpack -p"
},
"main": "server/index.js",
"engines": {
"node": "8.9.1"
},
"dependencies": {
"dotenv": "^4.0.0",
"forever": "^0.15.3",
"glob": "^7.1.1",
"hapi": "^16.1.0",
"hapi-devine-autoload": "^2.0.0",
"hapi-devine-routes": "^1.0.0",
"inert": "^4.1.0",
"joi": "^10.1.0",
"joi-objectid": "^2.0.0",
"lodash": "^4.17.4",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"three": "^0.88.0",
"three.meshline": "^1.0.3",
"threex": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.2.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"eslint": "^3.17.0",
"eslint-config-devine": "^1.7.0",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.4",
"image-webpack-loader": "^3.1.0",
"nodemon": "^1.11.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^1.2.1",
"postcss-reporter": "^3.0.0",
"postcss-will-change": "^1.1.0",
"rimraf": "^2.5.4",
"style-loader": "^0.17.0",
"stylelint": "^8.3.1",
"stylelint-config-devine": "^1.1.4",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-config-htmls": "^1.0.1",
"webpack-config-utils": "^2.3.0"
}
}