-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 731 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 731 Bytes
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
{
"name": "react-webpack-lite",
"version": "1.0.0",
"description": "react-webpack-lite boilerplate",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --inline --host 0.0.0.0 --port 3000",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"keywords": [
"react",
"boilerplate",
"webpack"
],
"author": "bobo",
"license": "ISC",
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^2.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}