-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 973 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
{
"name": "react-flux-skeleton",
"version": "1.0.0",
"description": "React + Flux application skeleton",
"main": "webpack.config.js",
"dependencies": {
"axios": "^0.15.2",
"flux": "^2.1.1",
"keymirror": "^0.1.1",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-router": "^3.0.0",
"webpack": "^1.12.9"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"json-server": "^0.9.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "webpack-dev-server --content-base src --inline --hot",
"api": "json-server --watch data/db.json --port 3001"
}
}