forked from ant-design/ant-motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.27 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
{
"name": "ant-motion",
"version": "1.7.0",
"title": "Ant Motion",
"description": "react animation component",
"homepage": "http://motion.ant.design/",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/ant-motion"
},
"license": "MIT",
"dependencies": {
"rc-animate": "^2.6.0",
"rc-banner-anim": "^2.2.3",
"rc-drawer": "^3.0.2",
"rc-queue-anim": "^1.7.0",
"rc-scroll-anim": "^2.6.1",
"rc-texty": "^0.2.0",
"rc-tween-one": "^2.4.0"
},
"devDependencies": {
"antd": "^3.13.2",
"antd-tools": "^7.0.0",
"babel-eslint": "^10.0.1",
"bisheng": "^1.1.0",
"bisheng-plugin-antd": "^1.0.0",
"bisheng-plugin-description": "^0.1.4",
"bisheng-plugin-react": "^1.0.0",
"bisheng-plugin-toc": "^0.4.4",
"core-js": "^3.0.1",
"cross-env": "^7.0.0",
"enquire-js": "^0.2.1",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-compat": "^3.1.1",
"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-tinker": "^0.5.0",
"jsonml.js": "^0.1.0",
"pre-commit": "1.x",
"prop-types": "15.x",
"react": "^16.4.0",
"react-document-title": "^2.0.1",
"react-dom": "^16.4.0",
"react-github-button": "^0.1.11",
"react-intl": "^3.2.0",
"react-router": "~5.1.2",
"react-sublime-video": "^0.2.0",
"stylelint": "^13.1.0",
"stylelint-config-standard": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0"
},
"pre-commit": [
"lint"
],
"scripts": {
"start": "rm -rf _site && cross-env NODE_ENV=development bisheng start -c ./site/bisheng.config.js",
"build": "rm -rf _site && cross-env NODE_ENV=production bisheng build -c ./site/bisheng.config.js",
"site": "npm run build",
"deploy": "npm run site && cp CNAME _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 --fix \"site/**/*.less\" --syntax less",
"lint:demo": "cross-env RUN_ENV=DEMO eslint ./ --ext '.md' -c ./.eslintrc.js",
"test": "npm run lint"
}
}