-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "frontend-boilerplate",
"version": "1.0.0",
"private": true,
"description": "A boilerplate of things that shouldn't exist",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server -d --history-api-fallback --hot --inline --progress --host 0.0.0.0 --colors --port 3000",
"build": "NODE_ENV=production webpack --progress --colors",
"stub": "nodemon server/index.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.7.1",
"babel-runtime": "^6.5.0",
"classnames": "^2.2.3",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"redux-actions": "^0.9.1",
"redux-promise": "^0.5.3",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"history": "^2.1.1"
},
"dependencies": {
"font-awesome": "^4.6.3"
}
}