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