-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "react-webpack-starter",
"version": "1.0.0",
"description": "react dances with webpack, babel and others",
"main": "app/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --devtool eval --progress --colors",
"up": "webpack-dev-server --devtool eval --quiet --colors --hot",
"deploy": "NODE_ENV=production webpack --progress --hide-modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuson/react-webpack-starter.git"
},
"keywords": [
"react",
"webpack",
"babel"
],
"author": "nevermoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuson/react-webpack-starter/issues"
},
"homepage": "https://github.com/shuson/react-webpack-starter#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-runtime": "^6.2.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"history": "^1.13.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "^1.0.0"
}
}