forked from ant-design/ant-design-pro-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ant-design-pro-site",
"version": "2.0.0-beta.1",
"title": "Ant Design Pro",
"description": "site of Ant Design Pro",
"homepage": "http://pro.ant.design/",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/ant-design-pro-site"
},
"license": "MIT",
"dependencies": {
"antd": "^3.4.0",
"axios": "^0.18.0",
"bizcharts": "^3.1.4",
"bizcharts-plugin-slider": "^2.0.1",
"lodash-decorators": "^5.0.0",
"parallelshell": "^3.0.1",
"react-copy-to-clipboard": "^5.0.0",
"react-document-title": "^2.0.3",
"lz-string": "^1.4.4",
"react-github-button": "^0.1.11",
"react-intl": "^2.4.0"
},
"devDependencies": {
"antd-tools": "^5.1.4",
"babel-cli": "^6.18.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-import": "^1.7.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bisheng": "^0.28.3",
"bisheng-plugin-antd": "^0.16.3",
"bisheng-plugin-description": "^0.1.4",
"bisheng-plugin-react": "^0.6.3",
"bisheng-plugin-toc": "^0.4.4",
"classnames": "^2.2.5",
"commander": "~2.15.1",
"concurrently": "^3.5.0",
"cross-env": "^5.1.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "latest",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.0.1",
"eslint-tinker": "^0.4.1",
"extract-text-webpack-plugin": "^3.0.0",
"fs-extra": "^5.0.0",
"gh-pages": "^1.0.0",
"js-beautify": "^1.7.5",
"npm-run-all": "^4.0.2",
"optimize-css-assets-webpack-plugin": "4.0.0",
"pre-commit": "^1.2.2",
"rc-drawer-menu": "^0.5.7",
"rc-queue-anim": "^1.3.1",
"rc-scroll-anim": "^2.0.2",
"rc-tween-one": "^1.7.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"shelljs": "^0.7.8",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"webpack": "^3.6.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development bisheng start -c ./site/bisheng.config.js",
"bisheng-build": "cross-env NODE_ENV=production bisheng build -c ./site/bisheng.config.js",
"scaffold-start": "cd ./scaffold && BROWSER=none npm start",
"scaffold-move": "./tool/bin/let -m",
"scaffold-build": "cd ./scaffold && npm run build && ../tool/bin/let -b",
"scaffold-build:static": "./tool/bin/let -s && cd ./scaffold && npm run build && ../tool/bin/let -b",
"scaffold-install": "cd ./scaffold && ../tool/bin/i",
"preinstall": "npm run scaffold-install",
"build-site": "rm -rf _site && npm run bisheng-build",
"gh-pages": "gh-pages -d _site",
"site": "npm run build-site && npm run gh-pages",
"components-publish": "./tool/bin/let -c && cd ./config/components && npm publish",
"clean": "rm -rf node_modules && cd ./scaffold && rm -rf node_modules",
"lint": "npm run lint:es && npm run lint:style && npm run lint:demo",
"lint:es": "eslint ./ --ext '.js,.jsx'",
"lint:style": "stylelint \"site/**/*.less\" --syntax less",
"lint:demo": "cross-env RUN_ENV=DEMO eslint ./ --ext '.md' -c ./.eslintrc.js",
"test": "npm run lint",
"components-build": "./tool/bin/let -c && cd ./config/components"
},
"pre-commit": [
"lint"
]
}