ant-design/package.json

318 lines
10 KiB
JSON
Raw Normal View History

2015-05-07 18:50:36 +08:00
{
2015-06-02 15:41:43 +08:00
"name": "antd",
"version": "4.17.0-alpha.4",
2019-05-08 16:27:37 +08:00
"description": "An enterprise-class UI design language and React components implementation",
"title": "Ant Design",
2015-07-15 12:07:11 +08:00
"keywords": [
2015-07-17 13:58:35 +08:00
"ant",
"component",
"components",
"design",
2015-07-17 13:58:35 +08:00
"framework",
"frontend",
"react",
"react-component",
"ui"
2015-07-17 16:24:00 +08:00
],
2020-09-07 17:25:45 +08:00
"homepage": "https://ant.design",
"bugs": {
"url": "https://github.com/ant-design/ant-design/issues"
},
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
},
"license": "MIT",
"contributors": [
"ant"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ant-design"
},
2015-07-17 16:24:00 +08:00
"files": [
2016-04-06 18:07:54 +08:00
"dist",
"lib",
"es"
2015-07-17 16:24:00 +08:00
],
"sideEffects": [
"dist/*",
"es/**/style/*",
"lib/**/style/*",
"*.less"
],
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/antd.min.js",
2016-06-22 13:18:43 +08:00
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"api-collection": "antd-tools run api-collection",
"authors": "node ./scripts/generate-authors",
"build": "npm run compile && NODE_OPTIONS='--max-old-space-size=4096' npm run dist",
"bundlesize": "bundlesize",
"check-commit": "node ./scripts/check-commit",
"check-ts-demo": "node ./scripts/check-ts-demo",
2021-01-26 19:28:06 +08:00
"clean": "antd-tools run clean && rm -rf es lib coverage dist report.html",
"clean-lockfiles": "rm -rf package-lock.json yarn.lock",
"prestart": "npm run version",
"precompile": "npm run version",
"pretest": "npm run version",
"predist": "npm run version",
"presite": "npm run version",
"color-less": "node ./scripts/generate-color-less",
2021-02-28 15:10:00 +08:00
"compile": "npm run clean && antd-tools run compile",
2020-11-16 22:00:00 +08:00
"changelog": "node ./scripts/print-changelog",
2020-12-01 10:42:45 +08:00
"predeploy": "antd-tools run clean && npm run site && cp CNAME _site && npm run site:test",
"deploy": "bisheng gh-pages --push-only --dotfiles",
"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",
"dist:esbuild": "ESBUILD=true npm run dist",
"dist:esbuild-no-dup-check": "ESBUILD=true NO_DUP_CHECK=true npm run dist",
"lint": "npm run tsc && npm run lint:script && npm run lint:demo && npm run lint:style && npm run lint:deps && npm run lint:md",
"lint-fix": "npm run lint-fix:script && npm run lint-fix:demo && npm run lint-fix:style",
"lint-fix:demo": "npm run lint:demo -- --fix",
"lint-fix:script": "npm run lint:script -- --fix",
"lint-fix:style": "npm run lint:style -- --fix",
"lint:demo": "eslint components/*/demo/*.md",
"lint:deps": "antd-tools run deps-lint",
"lint:md": "remark . -f -q",
"lint:script": "eslint . --ext '.js,.jsx,.ts,.tsx'",
"lint:style": "stylelint '{site,components}/**/*.less' --syntax less",
"pre-publish": "npm run test-all -- --skip-build",
"prettier": "prettier -c --write '**/*'",
"pretty-quick": "pretty-quick",
2020-05-11 23:38:54 +08:00
"pub": "npm run version && antd-tools run pub",
"prepublishOnly": "antd-tools run guard",
"site": "cross-env NODE_ICU_DATA=node_modules/full-icu ESBUILD=1 concurrently \"bisheng build --ssr -c ./site/bisheng.config.js\" \"npm run color-less\"",
"sort": "npx sort-package-json",
"sort-api": "antd-tools run sort-api-table",
"start": "antd-tools run clean && cross-env NODE_ENV=development concurrently \"npm run color-less\" \"bisheng start -c ./site/bisheng.config.js\"",
2020-09-07 17:34:10 +08:00
"test": "jest --config .jest.js --cache=false",
2020-09-07 17:39:07 +08:00
"test:update": "jest --config .jest.js --cache=false -u",
"test-all": "sh -e ./scripts/test-all.sh",
2020-09-07 17:34:10 +08:00
"test-node": "jest --config .jest.node.js --cache=false",
"tsc": "tsc --noEmit",
"site:test": "jest --config .jest.site.js --cache=false --force-exit",
2021-09-01 10:56:50 +08:00
"test-image": "npm run dist && docker-compose run tests",
"version": "node ./scripts/generate-version",
"install-react-16": "npm i --no-save react@16 react-dom@16 react-test-renderer@16 enzyme-adapter-react-16",
"argos": "argos upload imageSnapshots"
},
"browserslist": [
"> 0.5%",
2020-01-19 13:50:32 +08:00
"last 2 versions",
"Firefox ESR",
"not dead",
"IE 11",
"not IE 10"
],
2015-05-07 18:50:36 +08:00
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons": "^4.6.3",
"@ant-design/react-slick": "~0.28.1",
"@babel/runtime": "^7.12.5",
2021-09-01 10:56:50 +08:00
"@ctrl/tinycolor": "^3.4.0",
2018-10-06 20:30:27 +08:00
"array-tree-filter": "^2.1.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"lodash": "^4.17.21",
"moment": "^2.25.3",
"rc-cascader": "~2.0.0-alpha.18",
"rc-checkbox": "~2.3.0",
"rc-collapse": "~3.1.0",
"rc-dialog": "~8.6.0",
"rc-drawer": "~4.4.2",
"rc-dropdown": "~3.2.0",
"rc-field-form": "~1.21.0-2",
"rc-image": "~5.2.5",
"rc-input-number": "~7.3.0",
"rc-mentions": "~1.6.1",
"rc-menu": "~9.0.12",
"rc-motion": "^2.4.4",
2021-05-30 10:12:37 +08:00
"rc-notification": "~4.5.7",
"rc-pagination": "~3.1.9",
"rc-picker": "~2.5.17",
"rc-progress": "~3.1.0",
2020-11-02 14:19:43 +08:00
"rc-rate": "~2.9.0",
"rc-resize-observer": "^1.0.0",
"rc-select": "~13.1.0-alpha.0",
"rc-slider": "~9.7.1",
"rc-steps": "~4.1.0",
"rc-switch": "~3.2.0",
2021-09-15 14:13:32 +08:00
"rc-table": "~7.18.0",
"rc-tabs": "~11.10.0",
"rc-textarea": "~0.3.0",
"rc-tooltip": "~5.1.1",
"rc-tree": "~5.0.1",
"rc-tree-select": "~4.5.0-alpha.0",
"rc-trigger": "^5.2.10",
2021-05-17 16:23:30 +08:00
"rc-upload": "~4.3.0",
2021-09-15 14:13:32 +08:00
"rc-util": "^5.14.0",
"scroll-into-view-if-needed": "^2.2.25"
2015-05-21 20:36:13 +08:00
},
"devDependencies": {
"@ant-design/bisheng-plugin": "^2.3.0",
2019-12-26 15:27:52 +08:00
"@ant-design/hitu": "^0.0.0-alpha.13",
"@ant-design/tools": "^14.0.0-alpha.3",
2021-08-06 14:21:11 +08:00
"@docsearch/css": "^3.0.0-alpha.39",
"@docsearch/react": "^3.0.0-alpha.39",
"@qixian.cs/github-contributors-list": "^1.0.3",
"@stackblitz/sdk": "^1.3.0",
"@types/classnames": "^2.2.8",
"@types/enzyme": "^3.10.5",
2021-07-07 17:38:31 +08:00
"@types/gtag.js": "^0.0.7",
"@types/jest": "^27.0.0",
2020-11-13 19:35:46 +08:00
"@types/jest-environment-puppeteer": "^4.4.0",
2020-09-15 11:54:47 +08:00
"@types/jest-image-snapshot": "^4.1.0",
"@types/lodash": "^4.14.139",
2020-11-10 13:03:03 +08:00
"@types/puppeteer": "^5.4.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.1",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-window": "^1.8.2",
2019-01-12 19:22:06 +08:00
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"antd-img-crop": "^3.1.1",
"antd-pro-merge-less": "^3.0.11",
"antd-theme-generator": "^1.2.3",
"argos-cli": "^0.3.0",
"array-move": "^3.0.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"bisheng": "^3.0.0",
2018-10-06 20:30:27 +08:00
"bisheng-plugin-description": "^0.1.4",
"bisheng-plugin-react": "^1.1.2",
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",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^6.0.0",
"cross-env": "^7.0.0",
2018-10-06 20:30:27 +08:00
"dekko": "^0.2.1",
"docsearch.js": "^2.6.3",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"enquire-js": "^0.2.1",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.6.0",
"esbuild-loader": "^2.13.1",
"eslint": "^7.9.0",
2019-08-11 16:38:04 +08:00
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.21.1",
2020-09-15 11:54:47 +08:00
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^36.0.0",
2018-10-06 20:30:27 +08:00
"fetch-jsonp": "^1.1.3",
"fs-extra": "^10.0.0",
2019-08-16 13:34:35 +08:00
"full-icu": "^1.3.0",
"glob": "^7.1.4",
"http-server": "^13.0.0",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"ignore-emit-webpack-plugin": "^2.0.6",
"immer": "^9.0.1",
2019-01-29 00:05:16 +08:00
"immutability-helper": "^3.0.0",
"inquirer": "^8.0.0",
"intersection-observer": "^0.12.0",
"jest": "^27.0.3",
"jest-image-snapshot": "^4.5.1",
"jest-puppeteer": "^6.0.0",
"jquery": "^3.4.1",
"jsdom": "^17.0.0",
2016-04-06 16:11:30 +08:00
"jsonml.js": "^0.1.0",
"less-vars-to-js": "^1.3.0",
2017-12-29 17:02:45 +08:00
"lz-string": "^1.4.4",
"mockdate": "^3.0.0",
"node-fetch": "^2.0.0",
"open": "^8.0.1",
"prettier": "^2.3.2",
2021-01-07 13:30:15 +08:00
"prettier-plugin-jsdoc": "^0.3.0",
"pretty-quick": "^3.0.0",
"querystring": "^0.2.0",
"rc-footer": "^0.6.6",
"rc-tween-one": "^2.4.1",
"rc-virtual-list": "^3.2.4",
"react": "^17.0.1",
"react-color": "^2.17.3",
2018-10-06 20:30:27 +08:00
"react-copy-to-clipboard": "^5.0.1",
"react-dnd": "^14.0.1",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
2018-10-06 20:30:27 +08:00
"react-github-button": "^0.1.11",
"react-helmet-async": "~1.1.2",
2021-01-21 13:19:58 +08:00
"react-highlight-words": "^0.17.0",
"react-infinite-scroller": "^1.2.4",
"react-intl": "^5.20.4",
"react-resizable": "^3.0.1",
"react-router-dom": "^5.0.1",
"react-sortable-hoc": "^2.0.0",
"react-sticky": "^6.0.3",
"react-test-renderer": "^17.0.1",
"react-text-loop": "^2.3.0",
2020-08-11 13:55:22 +08:00
"react-virtualized": "^9.22.0",
"react-window": "^1.8.5",
"remark": "^14.0.1",
"remark-cli": "^10.0.0",
"remark-lint": "^9.0.0",
"remark-preset-lint-recommended": "^6.0.0",
2016-04-09 15:22:51 +08:00
"reqwest": "^2.0.5",
2019-08-17 22:42:14 +08:00
"rimraf": "^3.0.0",
"scrollama": "^2.0.0",
"simple-git": "^2.23.0",
"string-replace-loader": "^3.0.3",
2020-01-13 12:14:38 +08:00
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"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",
"typescript": "~4.4.2",
2020-11-10 13:03:03 +08:00
"webpack-bundle-analyzer": "^4.1.0",
2018-10-06 20:30:27 +08:00
"xhr-mock": "^2.4.1",
"xhr2": "^0.2.0",
"yaml-front-matter": "^4.0.0"
2015-05-07 19:54:54 +08:00
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
2015-06-11 16:35:36 +08:00
},
"bundlesize": [
{
"path": "./dist/antd.min.js",
2021-09-01 10:56:50 +08:00
"maxSize": "275 kB"
},
{
"path": "./dist/antd.min.css",
"maxSize": "65 kB"
2019-12-26 15:48:28 +08:00
},
{
"path": "./dist/antd.dark.min.css",
"maxSize": "67 kB"
},
{
"path": "./dist/antd.compact.min.css",
"maxSize": "65 kB"
2021-09-01 10:56:50 +08:00
},
{
"path": "./dist/antd.variable.min.css",
"maxSize": "65 kB"
}
2019-08-28 14:14:00 +08:00
],
2020-04-26 10:55:06 +08:00
"tnpm": {
"mode": "npm"
}
}