You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.2 KiB
104 lines
3.2 KiB
{
|
|
"name": "ant-design-pro",
|
|
"version": "2.0.0",
|
|
"description": "An out-of-box UI solution for enterprise applications",
|
|
"private": true,
|
|
"scripts": {
|
|
"precommit": "npm run lint-staged",
|
|
"presite": "npm run generate-mock && cd functions && npm install",
|
|
"start": "cross-env APP_TYPE=site umi dev",
|
|
"start:no-mock": "cross-env MOCK=none umi dev",
|
|
"build": "umi build",
|
|
"site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy",
|
|
"analyze": "cross-env ANALYZE=1 umi build",
|
|
"lint:style": "stylelint \"src/**/*.less\" --syntax less",
|
|
"lint": "eslint --ext .js src mock tests && npm run lint:style",
|
|
"lint:fix": "eslint --fix --ext .js src mock tests && npm run lint:style",
|
|
"lint-staged": "lint-staged",
|
|
"lint-staged:js": "eslint --ext .js",
|
|
"test": "umi test",
|
|
"generate-mock": "node ./scripts/generateMock.js",
|
|
"test:component": "umi test ./src/components",
|
|
"test:all": "node ./tests/run-tests.js",
|
|
"prettier": "prettier --write ./src/**/**/**/*"
|
|
},
|
|
"dependencies": {
|
|
"@antv/data-set": "^0.9.6",
|
|
"@babel/runtime": "^7.0.0",
|
|
"antd": "^3.9.2",
|
|
"bizcharts": "^3.2.2",
|
|
"bizcharts-plugin-slider": "^2.0.3",
|
|
"classnames": "^2.2.6",
|
|
"dva": "^2.4.0",
|
|
"enquire-js": "^0.2.1",
|
|
"hash.js": "^1.1.5",
|
|
"lodash": "^4.17.10",
|
|
"lodash-decorators": "^6.0.0",
|
|
"memoize-one": "^4.0.0",
|
|
"moment": "^2.22.2",
|
|
"numeral": "^2.0.6",
|
|
"nzh": "^1.0.3",
|
|
"omit.js": "^1.0.0",
|
|
"path-to-regexp": "^2.4.0",
|
|
"prop-types": "^15.5.10",
|
|
"qs": "^6.5.2",
|
|
"rc-animate": "^2.4.4",
|
|
"react": "^16.5.1",
|
|
"react-container-query": "^0.11.0",
|
|
"react-copy-to-clipboard": "^5.0.1",
|
|
"react-document-title": "^2.0.3",
|
|
"react-dom": "^16.5.1",
|
|
"react-fittext": "^1.0.0",
|
|
"react-router-dom": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^16.4.11",
|
|
"@types/react-dom": "^16.0.6",
|
|
"antd-pro-merge-less": "^0.0.9",
|
|
"antd-pro-theme-webpack-plugin": "^1.1.8",
|
|
"babel-eslint": "^9.0.0",
|
|
"cross-env": "^5.1.1",
|
|
"cross-port-killer": "^1.0.1",
|
|
"enzyme": "^3.4.4",
|
|
"eslint": "^5.4.0",
|
|
"eslint-config-airbnb": "^17.0.0",
|
|
"eslint-config-prettier": "^3.0.1",
|
|
"eslint-plugin-babel": "^5.1.0",
|
|
"eslint-plugin-compat": "^2.5.1",
|
|
"eslint-plugin-import": "^2.8.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
"eslint-plugin-markdown": "^1.0.0-beta.6",
|
|
"eslint-plugin-react": "^7.11.1",
|
|
"gh-pages": "^2.0.0",
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.2.0",
|
|
"merge-umi-mock-data": "^0.0.3",
|
|
"mockjs": "^1.0.1-beta3",
|
|
"prettier": "1.14.2",
|
|
"pro-download": "^1.0.1",
|
|
"stylelint": "^9.4.0",
|
|
"stylelint-config-prettier": "^4.0.0",
|
|
"stylelint-config-standard": "^18.0.0",
|
|
"umi": "^2.0.1",
|
|
"umi-plugin-react": "^1.0.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"puppeteer": "^1.6.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,less}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"**/*.{js,jsx}": "npm run lint-staged:js",
|
|
"**/*.less": "stylelint --syntax less"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not ie <= 10"
|
|
]
|
|
}
|
|
|