This repository has been archived by the owner on Jan 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ghost-pepper",
"private": true,
"version": "1.0.0",
"description": "First thing's first, [install git flow](https://github.com/nvie/gitflow/wiki/Installation). After that, the **client** folder has source code for the rendering/opengl layer, and the **server** folder has source code for displayingrendered images and handling positioning logic.",
"main": "index.js",
"scripts": {
"dev": "rm -rf ./dist && (NODE_ENV=dev ./node_modules/webpack/bin/webpack.js --config ./client/webpack.config.js --watch --quiet) & (NODE_ENV=dev ./node_modules/webpack/bin/webpack.js --config ./projector/webpack.config.js --watch --quiet) & (./node_modules/nodemon/bin/nodemon.js ./server/index.js)",
"dev-windows1": "rm -rf \\dist && SET NODE_ENV=dev & node .\\node_modules\\webpack\\bin\\webpack.js --config .\\client\\webpack.config.js --watch --quiet",
"dev-windows2": "SET NODE_ENV=dev & node .\\node_modules\\webpack\\bin\\webpack.js --config .\\projector\\webpack.config.js --watch --quiet",
"dev-windows3": "node .\\node_modules\\nodemon\\bin\\nodemon.js .\\server\\index.js",
"test": "mocha tests/test.js -R nyan",
"test-peer": "rm -rf ./tests/dist && (./node_modules/webpack/bin/webpack.js --config ./tests/webpack.config.js --watch --quiet)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodyJamesCasey/ghost-pepper.git"
},
"author": "The Crapstone Initiative",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodyJamesCasey/ghost-pepper/issues"
},
"homepage": "https://github.com/CodyJamesCasey/ghost-pepper#readme",
"engines": {
"node": "4.1.x"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"chai": "^3.4.1",
"css-loader": "^0.19.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.2",
"node-sass": "^3.3.3",
"nodemon": "^1.7.1",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"superagent": "^1.5.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2"
},
"dependencies": {
"async": "^1.5.0",
"babel-runtime": "^5.8.25",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"history": "^1.12.5",
"leapjs": "^0.6.4",
"material-design-icons": "^2.0.0",
"material-ui": "^0.13.1",
"morgan": "^1.6.1",
"multer": "^1.1.0",
"object-assign": "^4.0.1",
"peer": "^0.2.8",
"peerjs": "^0.3.14",
"react": "^0.14.2",
"react-addons-create-fragment": "^0.14.2",
"react-addons-pure-render-mixin": "^0.14.2",
"react-addons-transition-group": "^0.14.2",
"react-addons-update": "^0.14.2",
"react-dom": "^0.14.2",
"react-dropzone": "^3.0.0",
"react-redux": "^3.1.0",
"react-router": "^1.0.0",
"react-tap-event-plugin": "^0.2.0",
"redux": "^3.0.2",
"rimraf": "^2.4.3",
"roboto-fontface": "^0.4.2",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"superagent": "^1.4.0",
"three.js": "^0.73.0"
}
}