-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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": "webpack-react-kit",
"version": "1.0.0",
"description": "a simple webpack react starter kit",
"main": "index.js",
"scripts": {
"build": "webpack --progress --profile --colors",
"dev": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikingmute/webpack-react-kit.git"
},
"keywords": [
"react",
"webpack",
"babel",
"es6"
],
"author": "viking",
"license": "ISC",
"bugs": {
"url": "https://github.com/vikingmute/webpack-react-kit/issues"
},
"homepage": "https://github.com/vikingmute/webpack-react-kit#readme",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.11.1",
"bootstrap": "^4.0.0-alpha.2",
"css-loader": "^0.23.1",
"expect": "^1.13.4",
"html-webpack-plugin": "^1.7.0",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"react-hot-loader": "^3.0.0-beta.4",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}