-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "create-react-doc",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Fast static generated site. Just write markdown file.",
"homepage": "http://muyunyun.cn/create-react-doc",
"bin": {
"react-doc": "bin/react-doc.js"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap --hoist": "lerna bootstrap --hoist",
"clean": "lerna clean",
"start": "yarn bootstrap && node packages/create-react-doc/index.js start",
"build": "node packages/create-react-doc/index.js build",
"deploy": "node packages/create-react-doc/index.js deploy",
"release": "lerna publish",
"release-qa": "lerna publish --npm-tag=beta",
"cleanup": "rm -rf node_modules/gh-pages/.cache",
"deploy:site": "npm run cleanup && node gh-pages",
"up:dev": "sh utils/uppackage-dev.sh",
"up": "sh utils/uppackage.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/MuYunyun/create-react-doc"
},
"keywords": [
"react",
"create-react-doc",
"blog",
"markdown"
],
"author": "muyunyun",
"license": "MIT",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^3.1.0",
"lerna": "^3.22.1"
}
}