-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1006 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
{
"name": "react-demos",
"version": "1.0.0",
"description": "some demos with react",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --hot",
"build": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qingguoing/react-demos.git"
},
"author": "qingguoing",
"license": "MIT",
"bugs": {
"url": "https://github.com/qingguoing/react-demos/issues"
},
"homepage": "https://github.com/qingguoing/react-demos#readme",
"dependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"node-sass": "^4.5.2",
"prop-types": "^15.5.10",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1"
},
"devDependencies": {
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
}
}