forked from larrymyers/react-mini-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (40 loc) · 1008 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
{
"name": "react-mini-router-example",
"version": "0.0.1",
"description": "A sample React app that uses the mini-router for client and server rendering.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "^1.5.2",
"express": "^4.7.2",
"fluxxor": "^1.5.0",
"gulp-babel": "^6.1.0",
"lodash": "^3.0.0",
"plates": "^0.4.9",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"superagent": "^0.18.2"
},
"devDependencies": {
"babel-plugin-syntax-jsx": "^6.1.18",
"babel-plugin-transform-react-jsx": "^6.1.18",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-changed": "^1.1.0",
"gulp-nodemon": "^1.0.5",
"vinyl-source-stream": "^1.0.0",
"webpack": "^1.8.11",
"webpack-dev-middleware": "^1.0.11"
},
"babel": {
"plugins": [
"transform-react-jsx",
"syntax-jsx"
]
}
}