-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 929 Bytes
/
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
{
"name": "React-Cannon",
"version": "0.1.0",
"description": "A web socket-powered cannon",
"repository": {
"type": "git",
"url": "git://github.com/ltk/react-cannon.git"
},
"scripts": {
"start": "node server/server.js"
},
"browser": {
},
"browserify": {
"transform": [
"browserify-shim",
"reactify",
"hbsfy"
]
},
"browserify-shim": {
},
"devDependencies": {
"browserify": "~3.36.0",
"browserify-shim": "~3.4.1",
"connect": "~2.14.3",
"gulp": "~3.6.0",
"gulp-changed": "~0.3.0",
"gulp-livereload": "~1.2.0",
"gulp-notify": "~1.2.4",
"gulp-open": "~0.2.8",
"hbsfy": "~1.3.2",
"vinyl-source-stream": "~0.1.1"
},
"dependencies": {
"underscore": "*",
"react": "~0.10.0",
"reactify": "^0.12.0",
"es6-promise": "~1.0.0",
"socket.io-client": "~0.9.16",
"express": "~3",
"socket.io": "~0.9.16"
}
}