package.json 3.99 KB
Newer Older
1
{
afc163's avatar
afc163 committed
2
  "name": "ant-design-pro",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
3
  "version": "2.1.1",
ๅๅณ's avatar
ๅๅณ committed
4
  "description": "An out-of-box UI solution for enterprise applications",
5 6
  "private": true,
  "scripts": {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
7
    "presite": "node ./scripts/generateMock.js && cd functions && npm install",
chencheng's avatar
chencheng committed
8
    "start": "cross-env APP_TYPE=site umi dev",
sorrycc's avatar
sorrycc committed
9
    "start:no-mock": "cross-env MOCK=none umi dev",
10
    "build": "umi build",
11
    "site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy && npm run docker:push",
ๆ„š้“'s avatar
ๆ„š้“ committed
12
    "analyze": "cross-env ANALYZE=1 umi build",
nikogu's avatar
nikogu committed
13 14
    "lint:style": "stylelint \"src/**/*.less\" --syntax less",
    "lint": "eslint --ext .js src mock tests && npm run lint:style",
afc163's avatar
afc163 committed
15
    "lint:fix": "eslint --fix --ext .js src mock tests && npm run lint:style",
ๅๅณ's avatar
ๅๅณ committed
16 17
    "lint-staged": "lint-staged",
    "lint-staged:js": "eslint --ext .js",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
18 19
    "tslint": "npm run tslint:fix",
    "tslint:fix": "tslint --fix 'src/**/*.ts*'",
ๆ„š้“'s avatar
ๆ„š้“ committed
20 21
    "test": "umi test",
    "test:component": "umi test ./src/components",
jim's avatar
jim committed
22
    "test:all": "node ./tests/run-tests.js",
Rayron Victor's avatar
Rayron Victor committed
23
    "prettier": "prettier --write './src/**/*'",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
24 25 26
    "docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
    "docker:build": "docker-compose -f ./docker/docker-compose.dev.yml build",
    "docker-prod:dev": "docker-compose -f ./docker/docker-compose.yml up",
27 28 29 30
    "docker-prod:build": "docker-compose -f ./docker/docker-compose.yml build",
    "docker-hub:build":"docker build  -f Dockerfile.hub -t  ant-design-pro ./",
    "docker:tag":"docker tag ant-design-pro chenshuai2144/ant-design-pro",
    "docker:push":"npm run docker-hub:build && npm run docker:tag && docker push chenshuai2144/ant-design-pro"
31 32
  },
  "dependencies": {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
33
    "@babel/runtime": "^7.1.5",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
34 35
    "antd": "^3.10.7",
    "bizcharts": "^3.2.5-beta.4",
jim's avatar
jim committed
36
    "bizcharts-plugin-slider": "^2.0.3",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
37
    "classnames": "^2.2.6",
afc163's avatar
afc163 committed
38
    "dva": "^2.4.0",
jljsj's avatar
jljsj committed
39
    "enquire-js": "^0.2.1",
afc163's avatar
afc163 committed
40 41
    "hash.js": "^1.1.5",
    "lodash": "^4.17.10",
42
    "lodash-decorators": "^6.0.0",
43
    "memoize-one": "^4.0.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
44
    "moment": "^2.22.2",
45
    "numeral": "^2.0.6",
46
    "nzh": "^1.0.3",
ddcat1115's avatar
ddcat1115 committed
47
    "omit.js": "^1.0.0",
afc163's avatar
afc163 committed
48
    "path-to-regexp": "^2.4.0",
49
    "prop-types": "^15.5.10",
afc163's avatar
afc163 committed
50
    "qs": "^6.5.2",
afc163's avatar
afc163 committed
51
    "rc-animate": "^2.4.4",
52
    "react": "^16.5.1",
jim's avatar
jim committed
53
    "react-container-query": "^0.11.0",
54
    "react-copy-to-clipboard": "^5.0.1",
55
    "react-document-title": "^2.0.3",
56
    "react-dom": "^16.5.1",
afc163's avatar
afc163 committed
57
    "react-fittext": "^1.0.0",
ๆ„š้“'s avatar
ๆ„š้“ committed
58
    "react-router-dom": "^4.3.1"
59 60
  },
  "devDependencies": {
61
    "@antv/data-set": "^0.10.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
62
    "@types/react": "^16.7.6",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
63
    "@types/react-dom": "^16.0.9",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
64
    "antd-pro-merge-less": "^0.2.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
65 66
    "antd-theme-webpack-plugin": "^1.1.8",
    "babel-eslint": "^10.0.1",
jim's avatar
jim committed
67
    "cross-env": "^5.1.1",
ๅๅณ's avatar
ๅๅณ committed
68
    "cross-port-killer": "^1.0.1",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
69
    "enzyme": "^3.7.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
70
    "eslint": "^5.4.0",
71
    "eslint-config-airbnb": "^17.0.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
72
    "eslint-config-prettier": "^3.0.1",
73
    "eslint-plugin-babel": "^5.3.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
74
    "eslint-plugin-compat": "^2.6.2",
taichiyi's avatar
taichiyi committed
75
    "eslint-plugin-import": "^2.14.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
76
    "eslint-plugin-jsx-a11y": "^6.1.2",
77
    "eslint-plugin-markdown": "^1.0.0-beta.6",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
78
    "eslint-plugin-react": "^7.11.1",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
79 80
    "gh-pages": "^2.0.1",
    "husky": "^1.1.2",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
81
    "jest-puppeteer": "^3.5.1",
afc163's avatar
afc163 committed
82
    "lint-staged": "^8.0.4",
83
    "merge-umi-mock-data": "^0.0.3",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
84
    "mockjs": "^1.0.1-beta3",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
85
    "prettier": "1.15.2",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
86
    "pro-download": "^1.0.1",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
87
    "stylelint": "^9.4.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
88
    "stylelint-config-prettier": "^4.0.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
89
    "stylelint-config-standard": "^18.0.0",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
90 91 92
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.10.0",
    "tslint-react": "^3.6.0",
93
    "umi": "^2.2.7",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
94
    "umi-plugin-ga": "^1.1.3",
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
95
    "umi-plugin-react": "^1.2.0"
ๅๅณ's avatar
ๅๅณ committed
96
  },
97
  "optionalDependencies": {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
98
    "puppeteer": "^1.10.0"
99
  },
ๅๅณ's avatar
ๅๅณ committed
100
  "lint-staged": {
jim's avatar
jim committed
101
    "**/*.{js,jsx,less}": [
jim's avatar
jim committed
102
      "prettier --write",
jim's avatar
jim committed
103 104
      "git add"
    ],
jim's avatar
jim committed
105
    "**/*.{js,jsx}": "npm run lint-staged:js",
afc163's avatar
afc163 committed
106
    "**/*.less": "stylelint --syntax less"
afc163's avatar
afc163 committed
107
  },
afc163's avatar
afc163 committed
108
  "engines": {
ddcat1115's avatar
ddcat1115 committed
109
    "node": ">=8.0.0"
afc163's avatar
afc163 committed
110
  },
jim's avatar
jim committed
111 112 113 114
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
afc163's avatar
afc163 committed
115 116 117 118 119 120
  ],
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint-staged"
    }
  }
121
}