-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 985 Bytes
/
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
{
"name": "how-to-react",
"version": "1.0.0",
"description": "React tutorial and starter kit project",
"main": "index.js",
"scripts": {
"build": "webpack && npm run copyassets",
"copyassets": "copyfiles -f src/index.html dist/ && copyfiles assets/* dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasconita/how-to-react.git"
},
"keywords": [
"react",
"tutorial",
"webpack",
"examples",
"node",
"babel"
],
"author": "Jose Cortés",
"license": "ISC",
"bugs": {
"url": "https://github.com/vasconita/how-to-react/issues"
},
"homepage": "https://github.com/vasconita/how-to-react#readme",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"copyfiles": "^0.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"webpack": "^1.12.13"
}
}