-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 KB
/
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
40
41
42
43
44
45
46
47
48
49
{
"name": "@axetroy/react-async",
"version": "0.1.0",
"description": "react component for rend async data",
"main": "index.js",
"directories": {
"example": "example"
},
"keywords": [
"react",
"react-component",
"async",
"react-async"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"dev": "rimraf lib && webpack --config webpack.config.prod.js --display-error-details --progress --colors --watch",
"build": "rimraf lib && webpack --config webpack.config.prod.js --display-error-details --progress --colors",
"build:doc": "npm run build && rimraf docs && webpack --config webpack.config.doc.js --display-error-details --progress --colors",
"deploy": "gh-pages -d ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axetroy/react-async.git"
},
"author": "axetroy",
"license": "ISC",
"bugs": {
"url": "https://github.com/axetroy/react-async/issues"
},
"homepage": "https://github.com/axetroy/react-async#readme",
"peerDependencies": {
"react": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"gh-pages": "^1.0.0",
"react": "^16.0.0",
"react-dom": "^15.5.4",
"rimraf": "^2.5.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
}
}