-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "react-g-boilerplate",
"version": "1.0.0",
"description": "A React+WebPack Boilerplate",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/gshock/react-g-boilerplate.git"
},
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --progress --port 5000",
"build": "NODE_ENV=production node_modules/.bin/webpack –config ./webpack.production.config.js --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"webpack",
"boilerplate"
],
"author": "Gerardo Arevalo",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"postcss-loader": "^0.9.1",
"react-transform-hmr": "^1.0.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"json-loader": "^0.5.4",
"react": "^15.2.1",
"react-dom": "^15.2.1"
}
}