package.json 4.74 KB
Newer Older
1
{
afc163's avatar
afc163 committed
2
  "name": "ant-design-pro",
陈帅's avatar
陈帅 committed
3
  "version": "2.3.1",
4
  "private": true,
陈帅's avatar
陈帅 committed
5
  "description": "An out-of-box UI solution for enterprise applications",
6
  "scripts": {
愚道's avatar
愚道 committed
7
    "analyze": "cross-env ANALYZE=1 umi build",
陈帅's avatar
陈帅 committed
8
    "build": "umi build",
陈帅's avatar
陈帅 committed
9 10 11 12 13 14 15
    "docker-hub:build": "docker build  -f Dockerfile.hub -t  ant-design-pro ./",
    "docker-prod:build": "docker-compose -f ./docker/docker-compose.yml build",
    "docker-prod:dev": "docker-compose -f ./docker/docker-compose.yml up",
    "docker:build": "docker-compose -f ./docker/docker-compose.dev.yml build",
    "docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
    "docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro",
    "docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro",
陈帅's avatar
陈帅 committed
16 17 18
    "functions:build": "npm run generateMock && netlify-lambda build ./lambda",
    "functions:run": "npm run generateMock && cross-env NODE_ENV=dev netlify-lambda serve ./lambda",
    "generateMock": "node ./scripts/generateMock",
陈帅's avatar
陈帅 committed
19
    "lint": "eslint --ext .js src mock tests && npm run lint:style && npm run lint:prettier",
偏右's avatar
偏右 committed
20 21
    "lint-staged": "lint-staged",
    "lint-staged:js": "eslint --ext .js",
陈帅's avatar
陈帅 committed
22 23 24 25
    "lint:fix": "eslint --fix --ext .js src mock tests && stylelint --fix 'src/**/*.less' --syntax less",
    "lint:prettier": "check-prettier lint",
    "lint:style": "stylelint 'src/**/*.less' --syntax less",
    "prettier": "node ./scripts/prettier.js",
陈帅's avatar
陈帅 committed
26
    "site": "umi build && npm run functions:build",
陈帅's avatar
陈帅 committed
27
    "start": "umi dev",
陈帅's avatar
陈帅 committed
28
    "start:no-mock": "cross-env MOCK=none umi dev",
愚道's avatar
愚道 committed
29
    "test": "umi test",
jim's avatar
jim committed
30
    "test:all": "node ./tests/run-tests.js",
陈帅's avatar
陈帅 committed
31 32 33
    "test:component": "umi test ./src/components",
    "tslint": "npm run tslint:fix",
    "tslint:fix": "tslint --fix 'src/**/*.ts*'"
34
  },
陈帅's avatar
陈帅 committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint-staged"
    }
  },
  "lint-staged": {
    "**/*.less": "stylelint --syntax less",
    "**/*.{js,jsx}": "npm run lint-staged:js",
    "**/*.{js,ts,tsx,json,jsx,less}": [
      "node ./scripts/lint-prettier.js",
      "git add"
    ]
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ],
53
  "dependencies": {
偏右's avatar
偏右 committed
54
    "@antv/data-set": "^0.10.1",
55
    "antd": "^3.16.1",
陈帅's avatar
陈帅 committed
56
    "bizcharts": "3.5.2-beta.1",
陈帅's avatar
陈帅 committed
57
    "bizcharts-plugin-slider": "^2.1.1-beta.1",
陈帅's avatar
陈帅 committed
58
    "classnames": "^2.2.6",
偏右's avatar
偏右 committed
59
    "dva": "^2.4.1",
jljsj's avatar
jljsj committed
60
    "enquire-js": "^0.2.1",
陈帅's avatar
陈帅 committed
61
    "express": "^4.16.4",
高力's avatar
高力 committed
62
    "gg-editor": "^2.0.2",
偏右's avatar
偏右 committed
63 64
    "lodash": "^4.17.11",
    "lodash-decorators": "^6.0.1",
afc163's avatar
afc163 committed
65
    "memoize-one": "^5.0.0",
偏右's avatar
偏右 committed
66
    "moment": "^2.24.0",
陈帅's avatar
陈帅 committed
67
    "netlify-lambda": "^1.4.3",
68
    "numeral": "^2.0.6",
陈帅's avatar
陈帅 committed
69
    "nzh": "^1.0.4",
ddcat1115's avatar
ddcat1115 committed
70
    "omit.js": "^1.0.0",
陈帅's avatar
陈帅 committed
71 72
    "path-to-regexp": "^3.0.0",
    "prop-types": "^15.6.2",
陈帅's avatar
陈帅 committed
73
    "qs": "^6.6.0",
陈帅's avatar
陈帅 committed
74 75
    "rc-animate": "^2.6.0",
    "react": "^16.7.0",
jim's avatar
jim committed
76
    "react-container-query": "^0.11.0",
陈帅's avatar
陈帅 committed
77
    "react-copy-to-clipboard": "^5.0.1",
78
    "react-document-title": "^2.0.3",
陈帅's avatar
陈帅 committed
79
    "react-dom": "^16.7.0",
afc163's avatar
afc163 committed
80
    "react-fittext": "^1.0.0",
陈帅's avatar
陈帅 committed
81
    "react-media": "^1.9.2",
陈帅's avatar
陈帅 committed
82
    "resize-observer-polyfill": "^1.5.1",
陈小聪's avatar
陈小聪 committed
83
    "umi": "^2.4.4",
陈帅's avatar
陈帅 committed
84 85
    "umi-plugin-react": "^1.7.2",
    "umi-request": "^1.0.5"
86 87
  },
  "devDependencies": {
88
    "@types/history": "^4.7.2",
偏右's avatar
偏右 committed
89 90
    "@types/react": "^16.8.1",
    "@types/react-dom": "^16.0.11",
陈帅's avatar
陈帅 committed
91
    "antd-pro-merge-less": "^1.0.0",
陈帅's avatar
陈帅 committed
92
    "antd-theme-webpack-plugin": "^1.2.0",
陈帅's avatar
陈帅 committed
93
    "babel-eslint": "^10.0.1",
陈帅's avatar
陈帅 committed
94
    "chalk": "^2.4.2",
Heyward Fann's avatar
Heyward Fann committed
95
    "check-prettier": "^1.0.1",
偏右's avatar
偏右 committed
96
    "cross-env": "^5.2.0",
偏右's avatar
偏右 committed
97
    "cross-port-killer": "^1.0.1",
偏右's avatar
偏右 committed
98
    "enzyme": "^3.9.0",
偏右's avatar
偏右 committed
99
    "eslint": "^5.13.0",
陈帅's avatar
陈帅 committed
100
    "eslint-config-airbnb": "^17.1.0",
chen shuai's avatar
chen shuai committed
101
    "eslint-config-prettier": "^4.1.0",
陈帅's avatar
陈帅 committed
102
    "eslint-plugin-babel": "^5.3.0",
chen shuai's avatar
chen shuai committed
103
    "eslint-plugin-compat": "^2.6.3",
偏右's avatar
偏右 committed
104
    "eslint-plugin-import": "^2.16.0",
chen shuai's avatar
chen shuai committed
105
    "eslint-plugin-jsx-a11y": "^6.2.1",
陈帅's avatar
陈帅 committed
106 107
    "eslint-plugin-markdown": "^1.0.0",
    "eslint-plugin-react": "^7.12.4",
陈帅's avatar
陈帅 committed
108
    "gh-pages": "^2.0.1",
109
    "husky": "^2.2.0",
chen shuai's avatar
chen shuai committed
110
    "jest-puppeteer": "^4.1.0",
陈帅's avatar
陈帅 committed
111
    "jsdom-global": "^3.0.2",
陈帅's avatar
陈帅 committed
112
    "less": "^3.9.0",
偏右's avatar
偏右 committed
113
    "lint-staged": "^8.1.1",
陈帅's avatar
陈帅 committed
114
    "merge-umi-mock-data": "^1.0.4",
陈帅's avatar
陈帅 committed
115
    "mockjs": "^1.0.1-beta3",
陈帅's avatar
陈帅 committed
116
    "prettier": "^1.17.0",
117
    "serverless-http": "^2.0.1",
陈帅's avatar
陈帅 committed
118
    "slash2": "^2.0.0",
偏右's avatar
偏右 committed
119
    "stylelint": "^9.10.1",
120
    "stylelint-config-css-modules": "^1.3.0",
121
    "stylelint-config-prettier": "^5.0.0",
122
    "stylelint-config-rational-order": "^0.1.0",
偏右's avatar
偏右 committed
123
    "stylelint-config-standard": "^18.2.0",
124
    "stylelint-declaration-block-no-ignored-properties": "^2.1.0",
125
    "stylelint-order": "^2.0.0",
陈帅's avatar
陈帅 committed
126 127
    "tslint": "^5.12.1",
    "tslint-config-prettier": "^1.17.0",
陈帅's avatar
陈帅 committed
128
    "tslint-react": "^3.6.0",
陈帅's avatar
陈帅 committed
129
    "umi-plugin-ga": "^1.1.3"
偏右's avatar
偏右 committed
130
  },
131
  "optionalDependencies": {
偏右's avatar
偏右 committed
132
    "puppeteer": "^1.12.1"
133
  },
陈帅's avatar
陈帅 committed
134
  "engines": {
135
    "node": ">=10.0.0"
陈帅's avatar
陈帅 committed
136
  },
陈帅's avatar
陈帅 committed
137 138 139 140 141 142
  "checkFiles": [
    "src/**/*.js*",
    "src/**/*.ts*",
    "src/**/*.less",
    "config/**/*.js*",
    "scripts/**/*.js"
陈帅's avatar
陈帅 committed
143
  ]
144
}