forked from survivejs/webpack-book
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 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
{
"name": "react-webpack-cookbook",
"version": "0.0.0",
"description": "React Webpack cookbook",
"main": "./index.js",
"scripts": {
"generate-gitbook": "gitbook build ./content ./gh-pages",
"generate-wiki": "node ./scripts/generate-wiki.js",
"deploy-gitbook": "node ./scripts/deploy-gh-pages.js",
"deploy-wiki": "./scripts/deploy-wiki.sh",
"generate-and-deploy": "npm run generate-gitbook && npm run generate-wiki && npm run deploy-gitbook && npm run deploy-wiki",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/christianalfoni/react-webpack-cookbook.git"
},
"keywords": [
"react",
"webpack"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/christianalfoni/react-webpack-cookbook/issues"
},
"homepage": "https://github.com/christianalfoni/react-webpack-cookbook",
"dependencies": {
"async": "^0.9.0",
"fs-extra": "^0.18.2",
"gh-pages": "^0.2.0",
"gitbook-cli": "^0.3.3"
},
"devDependencies": {}
}