-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (40 loc) · 1.27 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
{
"name": "the-marvellous-ritual",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"three": "*",
"three-orbit-controls": "*",
"gl-matrix": "2.x",
"express" : "*",
"stats.js" : "0.0.x",
"socket.io" : "1.4.x",
"socket.io-client" : "1.4.x"
},
"devDependencies": {
"eslint" : "*",
"babel-eslint" : "*",
"eslint-plugin-react" : "*",
"webpack" : "1.x",
"webpack-dev-server": "*",
"babel-cli": "^6.0.0",
"babel-register": "^6.0.0",
"babel-loader" : "6.x",
"json-loader" : "0.5",
"file-loader" : "0.8.x",
"babel-core" : "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-stage-2": "6.x",
"babel-plugin-transform-runtime": "6.x"
},
"engines": {
"node": "4.x"
},
"scripts": {
"build-front": "node node_modules/webpack/bin/webpack.js --config ./front/webpack.config.js -d",
"postinstall": "node node_modules/webpack/bin/webpack.js --config ./front/webpack.config.js -d",
"dev-front": "node node_modules/webpack/bin/webpack.js --config ./front/webpack.config.js -d -w",
"dev-back": "node ./back/_run.js",
"server": "node ./back/_run.js"
}
}