-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
61 lines (61 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "github-notetaker-app",
"version": "1.0.4",
"description": "boilerplate",
"main": "app/index.jsx",
"scripts": {
"dev": "webpack-dev-server --devtool eval --progress --hot --colors --content-base build --history-api-fallback",
"build": "npm run clean && webpack --progress --color --config webpack.prod.config.js",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuoYongfeng/webpack-dev-boilerplate.git"
},
"keywords": [
"react",
"webpack",
"es6",
"babel"
],
"author": "guoyongfeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuoYongfeng/webpack-dev-boilerplate/issues"
},
"homepage": "https://github.com/GuoYongfeng/webpack-dev-boilerplate#readme",
"dependencies": {
"axios": "^0.9.1",
"bootstrap": "^3.3.6",
"core-decorators": "^0.12.0",
"firebase": "^2.4.1",
"history": "^2.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.1",
"reactfire": "^0.6.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.10.0",
"less": "^2.6.1",
"less-loader": "^2.2.2",
"open-browser-webpack-plugin": "0.0.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}