-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "react-flux-webpack-starter",
"version": "0.0.1",
"description": "A boilerplate project for webpack + flux + react, also with react-mini-router",
"author": "Alex Barry, Josh Teeter",
"license": "MIT",
"main": "public/index.html",
"dependencies": {
"bemmer-node": "^0.1.2",
"coffee-loader": "^0.7.2",
"css-loader": "^0.9.1",
"file-loader": "^0.8.4",
"flux": "^2.0.3",
"font-awesome-webpack": "^0.0.3",
"html-webpack-plugin": "^1.1.0",
"json-loader": "^0.5.2",
"lodash": "^3.1.0",
"normalizeurl": "^0.1.3",
"react": "^0.13.3",
"react-mini-router": "^1.1.7",
"sass-loader": "^1.0.2",
"style-loader": "^0.8.3",
"url-loader": "^0.5.6",
"webpack": "^1.5.1"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"expect.js": "^0.3.1",
"mocha": "^2.3.0",
"node-sass": "^3.1.2",
"sinon": "^1.16.1",
"webpack-dev-server": "^1.7.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --opts spec/mocha.opts spec",
"webpack:development": "webpack-dev-server --config ./config/webpack.config.js --hot --inline --progress --colors",
"build": "webpack -p --config ./config/webpack.production.config.js"
}
}