2015-05-07 18:50:36 +08:00
|
|
|
{
|
2015-06-02 15:41:43 +08:00
|
|
|
"name": "antd",
|
2020-02-28 09:26:59 +08:00
|
|
|
"version": "4.0.0",
|
2019-05-08 16:27:37 +08:00
|
|
|
"description": "An enterprise-class UI design language and React components implementation",
|
2015-07-15 12:07:11 +08:00
|
|
|
"keywords": [
|
2015-07-17 13:58:35 +08:00
|
|
|
"ant",
|
|
|
|
"component",
|
|
|
|
"components",
|
2019-09-10 19:30:01 +08:00
|
|
|
"design",
|
2015-07-17 13:58:35 +08:00
|
|
|
"framework",
|
2019-09-10 19:30:01 +08:00
|
|
|
"frontend",
|
|
|
|
"react",
|
|
|
|
"react-component",
|
|
|
|
"ui"
|
2015-07-17 16:24:00 +08:00
|
|
|
],
|
2019-09-10 19:30:01 +08:00
|
|
|
"homepage": "http://ant.design/",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/ant-design/ant-design/issues"
|
2019-04-08 09:29:16 +08:00
|
|
|
},
|
2015-05-07 18:50:36 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-06-05 15:02:39 +08:00
|
|
|
"url": "https://github.com/ant-design/ant-design"
|
2015-05-07 18:50:36 +08:00
|
|
|
},
|
2019-09-10 19:30:01 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"contributors": [
|
|
|
|
"ant"
|
|
|
|
],
|
2015-07-17 16:24:00 +08:00
|
|
|
"files": [
|
2016-04-06 18:07:54 +08:00
|
|
|
"dist",
|
2017-05-27 14:09:07 +08:00
|
|
|
"lib",
|
|
|
|
"es"
|
2015-07-17 16:24:00 +08:00
|
|
|
],
|
2019-09-10 19:30:01 +08:00
|
|
|
"sideEffects": [
|
|
|
|
"dist/*",
|
|
|
|
"es/**/style/*",
|
|
|
|
"lib/**/style/*",
|
|
|
|
"*.less"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"module": "es/index.js",
|
2019-12-11 16:56:01 +08:00
|
|
|
"unpkg": "dist/antd.min.js",
|
2016-06-22 13:18:43 +08:00
|
|
|
"typings": "lib/index.d.ts",
|
2019-09-10 19:30:01 +08:00
|
|
|
"scripts": {
|
|
|
|
"api-collection": "antd-tools run api-collection",
|
|
|
|
"authors": "git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt",
|
2019-11-18 12:47:55 +08:00
|
|
|
"build": "npm run compile && npm run dist",
|
2019-09-10 19:30:01 +08:00
|
|
|
"bundlesize": "bundlesize",
|
|
|
|
"check-commit": "node ./scripts/check-commit.js",
|
|
|
|
"compile": "antd-tools run compile",
|
2019-11-23 19:46:47 +08:00
|
|
|
"predeploy": "antd-tools run clean && npm run site && cp netlify.toml CNAME _site && cp -r .circleci/ _site && npm run site:test",
|
2019-09-10 19:30:01 +08:00
|
|
|
"deploy": "bisheng gh-pages --push-only",
|
|
|
|
"deploy:china-mirror": "git checkout gh-pages && git pull origin gh-pages && git push git@gitee.com:ant-design/ant-design.git gh-pages",
|
|
|
|
"dist": "antd-tools run dist",
|
|
|
|
"lint": "npm run lint:tsc && npm run lint:script && npm run lint:demo && npm run lint:style && npm run lint:deps",
|
|
|
|
"lint-fix": "npm run lint-fix:script && npm run lint-fix:demo && npm run lint-fix:style",
|
|
|
|
"lint-fix:demo": "eslint-tinker ./components/*/demo/*.md",
|
|
|
|
"lint-fix:script": "npm run lint:script -- --fix",
|
|
|
|
"lint-fix:style": "npm run lint:style -- --fix",
|
|
|
|
"lint:demo": "cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'",
|
|
|
|
"lint:deps": "antd-tools run deps-lint",
|
|
|
|
"lint:md": "remark components/",
|
|
|
|
"lint:script": "eslint . --ext '.js,.jsx,.ts,.tsx'",
|
|
|
|
"lint:style": "stylelint '{site,components}/**/*.less' --syntax less",
|
|
|
|
"lint:tsc": "npm run tsc",
|
|
|
|
"pre-publish": "npm run check-commit && npm run test-all",
|
|
|
|
"prettier": "prettier -c --write '**/*'",
|
|
|
|
"pretty-quick": "pretty-quick",
|
|
|
|
"pub": "antd-tools run pub",
|
|
|
|
"prepublish": "antd-tools run guard",
|
2019-12-24 18:58:34 +08:00
|
|
|
"site": "cross-env NODE_ICU_DATA=node_modules/full-icu concurrently \"bisheng build --ssr -c ./site/bisheng.config.js\" \"node ./scripts/generateColorLess.js\"",
|
2019-09-10 19:30:01 +08:00
|
|
|
"sort": "npx sort-package-json",
|
|
|
|
"sort-api": "antd-tools run sort-api-table",
|
2019-12-24 18:58:34 +08:00
|
|
|
"start": "rimraf _site && mkdir _site && cross-env NODE_ENV=development concurrently \"node ./scripts/generateColorLess.js\" \"bisheng start -c ./site/bisheng.config.js\"",
|
2019-09-10 19:30:01 +08:00
|
|
|
"start:preact": "node ./scripts/generateColorLess.js && cross-env NODE_ENV=development REACT_ENV=preact bisheng start -c ./site/bisheng.config.js",
|
|
|
|
"test": "jest --config .jest.js --no-cache",
|
2020-02-06 14:43:16 +08:00
|
|
|
"test:update": "jest --config .jest.js --no-cache --update-snapshot",
|
2019-09-10 19:30:01 +08:00
|
|
|
"test-all": "./scripts/test-all.sh",
|
|
|
|
"test-node": "jest --config .jest.node.js --no-cache",
|
2019-10-18 21:27:36 +08:00
|
|
|
"tsc": "tsc",
|
|
|
|
"site:test": "jest --config .jest.site.js --cache=false"
|
2017-09-16 23:44:20 +08:00
|
|
|
},
|
2019-09-10 19:30:01 +08:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "pretty-quick --staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
2020-01-19 13:50:32 +08:00
|
|
|
"last 2 versions",
|
2019-09-10 19:30:01 +08:00
|
|
|
"Firefox ESR",
|
|
|
|
"> 1%",
|
2019-12-23 18:33:08 +08:00
|
|
|
"ie >= 11"
|
2019-09-10 19:30:01 +08:00
|
|
|
],
|
2015-05-07 18:50:36 +08:00
|
|
|
"dependencies": {
|
2020-01-16 17:46:37 +08:00
|
|
|
"@ant-design/icons": "^4.0.0-rc.0",
|
2020-02-03 19:09:04 +08:00
|
|
|
"@ant-design/react-slick": "~0.25.5",
|
2018-10-06 20:30:27 +08:00
|
|
|
"array-tree-filter": "^2.1.0",
|
|
|
|
"classnames": "~2.2.6",
|
2019-06-05 12:25:05 +08:00
|
|
|
"copy-to-clipboard": "^3.2.0",
|
2018-11-12 20:31:58 +08:00
|
|
|
"css-animation": "^1.5.0",
|
2019-07-19 12:34:47 +08:00
|
|
|
"lodash": "^4.17.13",
|
2019-01-31 16:07:49 +08:00
|
|
|
"moment": "^2.24.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"omit.js": "^1.0.2",
|
|
|
|
"prop-types": "^15.7.2",
|
|
|
|
"raf": "^3.4.1",
|
2019-12-12 11:11:57 +08:00
|
|
|
"rc-animate": "~2.10.2",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-cascader": "~1.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"rc-checkbox": "~2.1.6",
|
|
|
|
"rc-collapse": "~1.11.3",
|
2019-12-13 22:54:47 +08:00
|
|
|
"rc-dialog": "~7.6.0",
|
|
|
|
"rc-drawer": "~3.1.1",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-dropdown": "~3.0.0",
|
|
|
|
"rc-field-form": "~1.0.0",
|
2020-02-11 22:38:06 +08:00
|
|
|
"rc-input-number": "~4.5.4",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-mentions": "~1.0.0",
|
|
|
|
"rc-menu": "~8.0.1",
|
|
|
|
"rc-notification": "~4.0.0",
|
2020-02-27 21:58:11 +08:00
|
|
|
"rc-pagination": "~2.0.1",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-picker": "~1.1.0",
|
2019-06-26 17:31:54 +08:00
|
|
|
"rc-progress": "~2.5.0",
|
2020-02-04 18:37:05 +08:00
|
|
|
"rc-rate": "~2.5.1",
|
2019-09-29 17:56:56 +08:00
|
|
|
"rc-resize-observer": "^0.1.0",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-select": "~10.0.0",
|
2020-02-05 18:47:10 +08:00
|
|
|
"rc-slider": "~9.2.1",
|
2019-08-14 11:18:36 +08:00
|
|
|
"rc-steps": "~3.5.0",
|
2019-01-26 01:26:48 +08:00
|
|
|
"rc-switch": "~1.9.0",
|
2020-02-26 23:38:31 +08:00
|
|
|
"rc-table": "~7.0.0",
|
|
|
|
"rc-tabs": "~10.0.0",
|
|
|
|
"rc-tooltip": "~4.0.0",
|
|
|
|
"rc-tree": "~3.0.0",
|
|
|
|
"rc-tree-select": "~3.0.0",
|
|
|
|
"rc-trigger": "~4.0.0",
|
|
|
|
"rc-upload": "~3.0.0",
|
2020-02-23 20:48:16 +08:00
|
|
|
"rc-util": "^4.20.0",
|
2020-02-27 18:19:25 +08:00
|
|
|
"rc-virtual-list": "~1.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2019-12-23 18:33:08 +08:00
|
|
|
"scroll-into-view-if-needed": "^2.2.20",
|
2019-06-05 12:25:05 +08:00
|
|
|
"warning": "~4.0.3"
|
2015-05-21 20:36:13 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-15 12:13:20 +08:00
|
|
|
"@ant-design/bisheng-plugin": "^2.3.0",
|
2020-02-24 22:44:29 +08:00
|
|
|
"@ant-design/colors": "^4.0.0-alpha.1",
|
2019-12-26 15:27:52 +08:00
|
|
|
"@ant-design/hitu": "^0.0.0-alpha.13",
|
2019-08-08 12:35:48 +08:00
|
|
|
"@ant-design/tools": "^8.0.4",
|
2019-06-02 19:46:15 +08:00
|
|
|
"@packtracker/webpack-plugin": "^2.0.1",
|
2019-12-17 17:58:58 +08:00
|
|
|
"@qixian.cs/github-contributors-list": "^1.0.3",
|
2019-06-05 12:25:05 +08:00
|
|
|
"@sentry/browser": "^5.4.0",
|
2019-11-13 17:29:46 +08:00
|
|
|
"@stackblitz/sdk": "^1.3.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"@types/classnames": "^2.2.8",
|
2019-08-27 20:44:29 +08:00
|
|
|
"@types/gtag.js": "^0.0.3",
|
2020-01-29 21:34:55 +08:00
|
|
|
"@types/jest": "^25.1.0",
|
2019-09-24 14:42:58 +08:00
|
|
|
"@types/lodash": "^4.14.139",
|
2019-06-05 12:25:05 +08:00
|
|
|
"@types/prop-types": "^15.7.1",
|
2019-09-24 14:42:58 +08:00
|
|
|
"@types/raf": "^3.4.0",
|
2020-02-20 19:56:22 +08:00
|
|
|
"@types/react": "^16.9.21",
|
2020-01-09 15:23:52 +08:00
|
|
|
"@types/react-color": "^3.0.1",
|
2020-02-20 19:56:22 +08:00
|
|
|
"@types/react-dom": "^16.9.5",
|
2019-01-12 19:22:06 +08:00
|
|
|
"@types/warning": "^3.0.0",
|
2020-02-07 17:55:27 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.19.0",
|
|
|
|
"@typescript-eslint/parser": "^2.19.0",
|
2019-12-31 13:50:30 +08:00
|
|
|
"antd-pro-merge-less": "^2.0.28",
|
2019-06-05 12:25:05 +08:00
|
|
|
"antd-theme-generator": "^1.1.6",
|
2018-09-30 14:59:31 +08:00
|
|
|
"babel-eslint": "^10.0.1",
|
2019-02-26 16:16:23 +08:00
|
|
|
"babel-plugin-add-react-displayname": "^0.0.5",
|
2019-12-31 13:29:02 +08:00
|
|
|
"bisheng": "^1.4.6",
|
2018-10-06 20:30:27 +08:00
|
|
|
"bisheng-plugin-description": "^0.1.4",
|
2019-06-23 12:49:28 +08:00
|
|
|
"bisheng-plugin-react": "^1.1.0",
|
2018-10-06 20:30:27 +08:00
|
|
|
"bisheng-plugin-toc": "^0.4.4",
|
2019-08-28 14:14:00 +08:00
|
|
|
"bundlesize": "^0.18.0",
|
2019-11-10 16:59:03 +08:00
|
|
|
"chalk": "^3.0.0",
|
2019-10-18 21:27:36 +08:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
2019-12-24 18:58:34 +08:00
|
|
|
"concurrently": "^5.0.2",
|
2020-01-29 21:43:41 +08:00
|
|
|
"cross-env": "^7.0.0",
|
2018-10-06 20:30:27 +08:00
|
|
|
"css-split-webpack-plugin": "^0.2.6",
|
|
|
|
"dekko": "^0.2.1",
|
2019-06-05 12:25:05 +08:00
|
|
|
"docsearch.js": "^2.6.3",
|
2018-04-02 15:42:34 +08:00
|
|
|
"enquire-js": "^0.2.1",
|
2019-06-05 12:25:05 +08:00
|
|
|
"enzyme": "^3.10.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.14.0",
|
|
|
|
"enzyme-to-json": "^3.3.5",
|
2020-02-07 17:55:27 +08:00
|
|
|
"eslint": "^6.8.0",
|
2019-08-11 16:38:04 +08:00
|
|
|
"eslint-config-airbnb": "^18.0.0",
|
2019-06-26 19:24:05 +08:00
|
|
|
"eslint-config-prettier": "^6.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"eslint-plugin-babel": "^5.3.0",
|
2020-01-12 19:50:29 +08:00
|
|
|
"eslint-plugin-import": "~2.20.0",
|
2019-11-05 00:02:30 +08:00
|
|
|
"eslint-plugin-jest": "^23.0.2",
|
2019-06-05 12:25:05 +08:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
2019-06-25 12:08:32 +08:00
|
|
|
"eslint-plugin-markdown": "^1.0.0",
|
|
|
|
"eslint-plugin-react": "^7.14.2",
|
2018-06-30 18:52:20 +08:00
|
|
|
"eslint-tinker": "^0.5.0",
|
2018-10-06 20:30:27 +08:00
|
|
|
"fetch-jsonp": "^1.1.3",
|
2019-08-16 13:34:35 +08:00
|
|
|
"full-icu": "^1.3.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"glob": "^7.1.4",
|
2019-11-28 14:43:21 +08:00
|
|
|
"http-server": "^0.12.0",
|
2020-01-09 15:23:52 +08:00
|
|
|
"husky": "^4.0.3",
|
2019-12-06 11:22:47 +08:00
|
|
|
"ignore-emit-webpack-plugin": "^2.0.2",
|
2019-01-29 00:05:16 +08:00
|
|
|
"immutability-helper": "^3.0.0",
|
2019-05-13 16:57:09 +08:00
|
|
|
"intersection-observer": "^0.7.0",
|
2020-02-02 11:45:55 +08:00
|
|
|
"jest": "^25.1.0",
|
2020-01-08 23:01:15 +08:00
|
|
|
"jquery": "^3.4.1",
|
2020-01-14 18:07:25 +08:00
|
|
|
"jsdom": "^16.0.0",
|
2016-04-06 16:11:30 +08:00
|
|
|
"jsonml.js": "^0.1.0",
|
2019-12-03 16:47:12 +08:00
|
|
|
"less-vars-to-js": "^1.3.0",
|
2019-05-22 00:25:07 +08:00
|
|
|
"logrocket": "^1.0.0",
|
2019-10-03 15:20:13 +08:00
|
|
|
"logrocket-react": "^4.0.0",
|
2017-12-29 17:02:45 +08:00
|
|
|
"lz-string": "^1.4.4",
|
2018-10-06 20:30:27 +08:00
|
|
|
"mockdate": "^2.0.2",
|
2019-06-05 12:25:05 +08:00
|
|
|
"node-fetch": "^2.6.0",
|
2019-10-05 21:44:02 +08:00
|
|
|
"preact": "^10.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"preact-compat": "^3.18.5",
|
|
|
|
"prettier": "^1.17.1",
|
2019-10-14 16:58:14 +08:00
|
|
|
"pretty-quick": "^2.0.0",
|
2016-02-24 15:11:50 +08:00
|
|
|
"querystring": "^0.2.0",
|
2019-11-08 14:37:31 +08:00
|
|
|
"rc-footer": "^0.6.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"rc-queue-anim": "^1.6.12",
|
|
|
|
"rc-scroll-anim": "^2.5.8",
|
|
|
|
"rc-tween-one": "^2.4.1",
|
2019-08-12 13:22:36 +08:00
|
|
|
"react": "^16.9.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"react-color": "^2.17.3",
|
2018-10-06 20:30:27 +08:00
|
|
|
"react-copy-to-clipboard": "^5.0.1",
|
2019-12-09 10:00:01 +08:00
|
|
|
"react-dnd": "^10.0.2",
|
2019-12-09 15:11:19 +08:00
|
|
|
"react-dnd-html5-backend": "^10.0.2",
|
2019-08-12 13:22:36 +08:00
|
|
|
"react-dom": "^16.9.0",
|
2018-10-06 20:30:27 +08:00
|
|
|
"react-github-button": "^0.1.11",
|
2019-11-09 17:42:41 +08:00
|
|
|
"react-helmet-async": "^1.0.4",
|
2019-01-15 14:07:14 +08:00
|
|
|
"react-highlight-words": "^0.16.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"react-infinite-scroller": "^1.2.4",
|
2019-08-08 12:35:48 +08:00
|
|
|
"react-intl": "^3.1.1",
|
2019-05-13 15:58:22 +08:00
|
|
|
"react-resizable": "^1.8.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"react-router-dom": "^5.0.1",
|
2018-08-28 18:56:25 +08:00
|
|
|
"react-sticky": "^6.0.3",
|
2019-06-05 12:25:05 +08:00
|
|
|
"react-test-renderer": "^16.8.6",
|
|
|
|
"react-virtualized": "~9.21.1",
|
2019-11-15 14:35:25 +08:00
|
|
|
"react-window": "^1.8.5",
|
2016-04-09 15:22:51 +08:00
|
|
|
"reqwest": "^2.0.5",
|
2019-08-17 22:42:14 +08:00
|
|
|
"rimraf": "^3.0.0",
|
2019-03-13 15:20:49 +08:00
|
|
|
"scrollama": "^2.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"simple-git": "^1.113.0",
|
2020-01-13 12:14:38 +08:00
|
|
|
"stylelint": "^13.0.0",
|
2019-12-07 19:58:30 +08:00
|
|
|
"stylelint-config-prettier": "^8.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"stylelint-config-rational-order": "^0.1.2",
|
2020-02-10 12:09:27 +08:00
|
|
|
"stylelint-config-standard": "^20.0.0",
|
2019-06-05 12:25:05 +08:00
|
|
|
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
|
2020-01-02 12:11:26 +08:00
|
|
|
"stylelint-order": "^4.0.0",
|
2020-01-02 18:24:34 +08:00
|
|
|
"theme-switcher": "^1.0.2",
|
2020-02-21 17:49:25 +08:00
|
|
|
"typescript": "~3.8.2",
|
2019-12-25 15:18:31 +08:00
|
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
2018-10-06 20:30:27 +08:00
|
|
|
"xhr-mock": "^2.4.1",
|
2019-08-18 18:58:13 +08:00
|
|
|
"xhr2": "^0.2.0",
|
|
|
|
"yaml-front-matter": "^4.0.0"
|
2015-05-07 19:54:54 +08:00
|
|
|
},
|
2019-09-10 19:30:01 +08:00
|
|
|
"peerDependencies": {
|
2020-02-28 10:51:18 +08:00
|
|
|
"react": ">=16.9.0",
|
|
|
|
"react-dom": ">=16.9.0"
|
2017-02-23 22:12:52 +08:00
|
|
|
},
|
2019-09-10 19:30:01 +08:00
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
2015-06-11 16:35:36 +08:00
|
|
|
},
|
2019-09-10 19:30:01 +08:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
|
|
|
"path": "./dist/antd.min.js",
|
2019-12-23 18:33:08 +08:00
|
|
|
"maxSize": "300 kB"
|
2019-09-10 19:30:01 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/antd.min.css",
|
2020-01-03 15:20:28 +08:00
|
|
|
"maxSize": "65 kB"
|
2019-12-26 15:48:28 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/antd.dark.min.css",
|
2020-01-03 15:20:28 +08:00
|
|
|
"maxSize": "65 kB"
|
2019-09-10 19:30:01 +08:00
|
|
|
}
|
2019-08-28 14:14:00 +08:00
|
|
|
],
|
2019-09-10 19:30:01 +08:00
|
|
|
"title": "Ant Design"
|
2020-02-25 13:19:02 +08:00
|
|
|
}
|