-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 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
31
{
"name": "reacttr",
"version": "1.0.0",
"description": "primera prueba con reactJS, curso de Carlos Azaustre",
"main": "/build/app.js",
"scripts": {
"build": "webpack --colors",
"serve": "webpack-dev-server --content-base build/ --colors --progress",
"start": "npm run build && npm run serve"
},
"author": "Israel Vilches",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"moment": "^2.18.1",
"normalize.css": "^7.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}