forked from ant-design/ant-design-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.7 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
101
102
103
{
"name": "landing",
"version": "1.0.0",
"title": "Landing Pages",
"description": "site of Landing Pages",
"homepage": "http://landing.ant.design/",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/ant-design-landing"
},
"license": "MIT",
"dependencies": {
"antd": "^3.10.1",
"autoresponsive-react": "^1.1.31",
"enquire-js": "^0.2.1",
"leancloud-storage": "^3.5.0",
"raw-loader": "^0.5.1",
"rc-animate": "^2.4.4",
"rc-banner-anim": "^2.1.0",
"rc-drawer": "^1.5.0",
"rc-editor-list": "~1.1.0",
"rc-queue-anim": "^1.6.0",
"rc-scroll-anim": "^2.5.0",
"rc-texty": "^0.2.0",
"rc-tween-one": "^2.2.0",
"react-document-title": "^2.0.1"
},
"devDependencies": {
"antd-tools": "^5.1.5",
"babel-cli": "^6.18.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-import": "^1.2.1",
"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.5",
"bisheng-plugin-description": "^0.1.1",
"bisheng-plugin-react": "^0.6.0",
"bisheng-plugin-toc": "^0.4.0",
"bluebird": "^3.5.0",
"blueimp-md5": "^2.10.0",
"classnames": "^2.2.5",
"codemirror": "^5.36.0",
"commander": "~2.19.0",
"concurrently": "^4.0.1",
"cross-env": "^5.1.1",
"deep-eql": "^4.0.0",
"dragula": "^3.7.2",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-compat": "^2.6.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.11.1",
"eslint-loader": "^2.1.1",
"eslint-tinker": "^0.5.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-saver": "^1.3.3",
"jszip": "^3.1.5",
"medium-editor": "^5.23.3",
"pre-commit": "1.x",
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-color": "^2.13.8",
"react-dom": "^16.0.0",
"react-intl": "^2.3.0",
"react-redux": "^5.0.6",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0"
},
"pre-commit": [
"lint"
],
"scripts": {
"start": "npm run cp-prettier && cross-env NODE_ENV=development concurrently \"npm run start-index\" \"npm run start-edit\" \"npm run start-templates\"",
"start-index": "bisheng start -c ./site/bisheng.index.config.js",
"start-edit": "bisheng start -c ./site/bisheng.edit.config.js",
"start-templates": "bisheng start -c ./site/bisheng.templates.config.js",
"build-index": "bisheng build -c ./site/bisheng.index.config.js",
"build-edit": "bisheng build -c ./site/bisheng.edit.config.js",
"build-templates": "bisheng build -c ./site/bisheng.templates.config.js",
"build": "npm run cp-prettier && cross-env NODE_ENV=production concurrently \"npm run build-index\" \"npm run build-edit\" \"npm run build-templates\"",
"site": "npm run build",
"cp-prettier": "rm -rf _site && mkdir -p ./_site/edit && cp -r ./prettier/* ./_site/edit ",
"deploy": "npm run site && bisheng gh-pages --push-only",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "eslint --fix --ext '.js,.jsx' site",
"lint:style": "stylelint \"site/**/*.less\" --syntax less",
"lint:demo": "cross-env RUN_ENV=DEMO eslint ./ --ext '.md' -c ./.eslintrc.js",
"test": "npm run lint"
}
}