forked from SteFletcher/reactable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "reactable",
"version": "0.0.1",
"description": "reactive socket i/o driven table",
"main": "app.js",
"scripts": {
"test": "mocha test",
"build": "browserify -t [ babelify --presets [ react ] ] ./src/app.jsx -o ./public/js/bundle.js -d",
"watch": "watchify -t [ babelify --presets [ react ] ] ./src/app.jsx -o ./public/js/bundle.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteFletcher/reactable.git"
},
"author": "stephen fletcher",
"license": "ISC",
"bugs": {
"url": "https://github.com/SteFletcher/reactable/issues"
},
"homepage": "https://github.com/SteFletcher/reactable#readme",
"dependencies": {
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"body-parser": "^1.14.2",
"bootstrap": "^3.3.6",
"express": "^4.13.4",
"jquery": "^2.2.0",
"lodash": "^4.0.0",
"moment": "^2.11.1",
"mongoose": "^4.3.7",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"socketio": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"browserify": "^13.0.0",
"reactify": "^1.1.1",
"watchify": "^3.7.0",
"restler": "~3.2.2",
"repeat": "0.0.6"
}
}