-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 986 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
{
"name": "flux-boilerplate",
"version": "0.1.0",
"description": "React Flux boilerplate",
"scripts": {
"postinstall": "webpack --config=webpack/webpack.staging.config.js",
"start": "node src/server/stageServer.js",
"test": "./node_modules/.bin/karma start",
"lint": "./node_modules/.bin/eslint ./src/client"
},
"author": "Tomas Weiss <[email protected]>",
"devDependencies": {
"babel-core": "^5.4.4",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.1.2",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.1.0",
"expect": "^1.6.0",
"express": "^4.12.4",
"karma": "^0.12.36",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.5",
"react-hot-loader": "^1.2.7",
"webpack": "^1.9.7",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"babel-runtime": "^5.8.12",
"flux": "^2.0.3",
"immutable": "^3.7.3",
"react": "^0.13.3",
"react-pure-render": "^1.0.1"
}
}