-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "playnode-springboard-demo",
"version": "1.0.0",
"description": "java/spring + nodejs + thrift + react demo",
"author": "Dongsu Jang <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://[email protected]/iolo/springboard-demo.git"
},
"engines": {
"node": ">=4.0",
"npm": ">=2.0"
},
"dependencies": {
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"body-parser": "^1.14.1",
"cors": "^2.7.1",
"debug": "^2.2.0",
"ejs": "^2.3.4",
"es6-promise": "^3.0.2",
"express": "^4.13.3",
"express-session": "^1.12.1",
"flux": "^2.1.1",
"history": "^1.13.0",
"isomorphic-fetch": "^2.2.0",
"node-int64": "^0.4.0",
"node-jsx": "^0.13.3",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc4",
"redis": "^2.3.0",
"redux": "^3.0.4",
"serve-static": "^1.10.0",
"thrift": "^0.9.3"
},
"main": "src/main/node/index.js",
"scripts": {
"api": "node src/main/node/index.js",
"web": "httpserver src/main/node/public",
"build": "browserify -t [ babelify --presets [ react ] ] src/main/node/jsx/springboard.js -o src/main/node/public/js/springboard.all.js",
"watch": "watchify -v -t [ babelify --presets [ react ] ] src/main/node/jsx/springboard.js -o src/main/node/public/js/springboard.all.js"
}
}