-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 KB
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
47
48
49
50
51
52
53
54
55
{
"private": true,
"name": "react-boilerplate",
"version": "0.0.0",
"description": "React Boilerplate",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Federico Knüssel, Jake McDonald",
"email": "fknussel@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/fknussel/react-bootstrap.git"
},
"scripts": {
"start": "webpack-dev-server --port 6789",
"clean": "rimraf build/",
"build:dev": "NODE_ENV=development webpack -d --progress --colors",
"build:stage": "NODE_ENV=staging webpack -d --progress --colors",
"build:prod": "NODE_ENV=production webpack -p --progress --colors",
"test": "mocha --require babel-core/register --require ignore-styles test/config.js test/**/*.spec.js"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"file-loader": "^0.9.0",
"ignore-styles": "^4.0.0",
"jsdom": "^9.4.1",
"lodash": "^4.14.0",
"mocha": "^3.0.2",
"postcss-loader": "^0.10.1",
"postcss-modules-values": "^1.1.3",
"precss": "^1.4.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
}
}