package.json 4.9 KB
Newer Older
1
{
A
afc163 已提交
2
  "name": "ant-design-pro",
陈帅 已提交
3
  "version": "4.0.0",
4
  "private": true,
陈帅 已提交
5
  "description": "An out-of-box UI solution for enterprise applications",
6
  "scripts": {
愚道 已提交
7
    "analyze": "cross-env ANALYZE=1 umi build",
陈帅 已提交
8
    "build": "umi build",
陈帅 已提交
9
    "deploy": "npm run site && npm run gh-pages",
陈帅 已提交
10 11 12 13 14 15 16
    "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",
C
chenshuai2144 已提交
17
    "fetch:blocks": "pro fetch-blocks && npm run prettier",
18
    "gh-pages": "cp CNAME ./dist/ && gh-pages -d dist",
陈帅 已提交
19
    "i18n-remove": "pro i18n-remove --locale=zh-CN --write",
陈帅 已提交
20
    "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
陈帅 已提交
21
    "lint:prettier": "prettier --check \"**/*\" --end-of-line auto",
偏右 已提交
22
    "lint-staged": "lint-staged",
陈帅 已提交
23 24
    "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
    "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
陈帅 已提交
25
    "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
L
lonwern 已提交
26
    "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
陈帅 已提交
27
    "prettier": "prettier -c --write \"**/*\"",
C
chenshuai2144 已提交
28
    "site": "npm run fetch:blocks && npm run build",
陈帅 已提交
29
    "start": "umi dev",
30 31
    "dev": "npm run start:dev",
    "start:dev": "cross-env REACT_APP_ENV=dev MOCK=none umi dev",
陈帅 已提交
32
    "start:no-mock": "cross-env MOCK=none umi dev",
偏右 已提交
33
    "start:no-ui": "cross-env UMI_UI=none umi dev",
陈帅 已提交
34
    "start:pre": "cross-env REACT_APP_ENV=pre umi dev",
35
    "start:test": "cross-env REACT_APP_ENV=test MOCK=none umi dev",
愚道 已提交
36
    "test": "umi test",
J
jim 已提交
37
    "test:all": "node ./tests/run-tests.js",
C
chenshuai2144 已提交
38
    "test:component": "umi test ./src/components",
39
    "tsc": "tsc",
C
chenshuai2144 已提交
40
    "ui": "umi ui"
41
  },
陈帅 已提交
42 43 44 45
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint-staged"
    }
46
  },
陈帅 已提交
47 48
  "lint-staged": {
    "**/*.less": "stylelint --syntax less",
49
    "**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
陈帅 已提交
50
    "**/*.{js,jsx,tsx,ts,less,md,json}": [
51
      "prettier --write"
52
    ]
陈帅 已提交
53
  },
陈帅 已提交
54 55 56 57 58
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ],
59
  "dependencies": {
陈帅 已提交
60 61 62
    "@ant-design/icons": "^4.0.0-alpha.19",
    "@ant-design/pro-layout": "^5.0.0",
    "@ant-design/pro-table": "^2.0.0",
63
    "@antv/data-set": "^0.11.1",
64
    "antd": "^4.0.2",
陈帅 已提交
65
    "classnames": "^2.2.6",
66
    "dva": "^2.6.0-beta.16",
A
afc163 已提交
67 68 69
    "lodash": "^4.17.11",
    "moment": "^2.24.0",
    "omit.js": "^1.0.2",
C
chenshuai2144 已提交
70
    "path-to-regexp": "2.4.0",
陈帅 已提交
71
    "qs": "^6.9.0",
A
afc163 已提交
72
    "react": "^16.8.6",
73
    "react-copy-to-clipboard": "^5.0.1",
A
afc163 已提交
74
    "react-dom": "^16.8.6",
C
chenshuai2144 已提交
75
    "react-helmet": "^5.2.1",
陈帅 已提交
76
    "redux": "^4.0.1",
C
chenshuai2144 已提交
77
    "umi": "^2.13.0",
陈帅 已提交
78
    "umi-plugin-antd-icon-config": "^1.0.2",
79
    "umi-plugin-antd-theme": "1.2.0-0",
陈帅 已提交
80
    "umi-plugin-pro-block": "^1.3.2",
陈帅 已提交
81 82 83
    "umi-plugin-react": "^1.14.10",
    "umi-request": "^1.0.8",
    "use-merge-value": "^1.0.1"
84 85
  },
  "devDependencies": {
86
    "@ant-design/pro-cli": "^1.0.18",
L
lijiehua 已提交
87
    "@types/classnames": "^2.2.7",
陈帅 已提交
88
    "@types/express": "^4.17.0",
89
    "@types/history": "^4.7.2",
90
    "@types/jest": "^25.1.0",
陈帅 已提交
91
    "@types/lodash": "^4.14.144",
陈帅 已提交
92
    "@types/qs": "^6.5.3",
陈帅 已提交
93
    "@types/react": "^16.9.17",
A
afc163 已提交
94
    "@types/react-dom": "^16.8.4",
C
chenshuai2144 已提交
95
    "@types/react-helmet": "^5.0.13",
陈帅 已提交
96
    "@umijs/fabric": "^2.0.2",
97
    "chalk": "^3.0.0",
98
    "cross-env": "^7.0.0",
A
afc163 已提交
99
    "cross-port-killer": "^1.1.1",
陈帅 已提交
100
    "enzyme": "^3.11.0",
101
    "express": "^4.17.1",
Y
Yu 已提交
102
    "gh-pages": "^2.0.1",
D
depfu[bot] 已提交
103
    "husky": "^4.0.7",
A
afc163 已提交
104
    "jest-puppeteer": "^4.2.0",
C
chenshuai2144 已提交
105
    "jsdom-global": "^3.0.2",
106
    "lint-staged": "^10.0.0",
陈帅 已提交
107
    "mockjs": "^1.0.1-beta3",
陈帅 已提交
108
    "node-fetch": "^2.6.0",
yoyo83773's avatar
yoyo83773 已提交
109
    "prettier": "^1.19.1",
偏右 已提交
110
    "pro-download": "1.0.1",
A
afc163 已提交
111
    "serverless-http": "^2.0.2",
112
    "stylelint": "^13.0.0",
113
    "umi-plugin-antd-icon-config": "^1.0.2",
114
    "umi-plugin-ga": "^1.1.3",
115
    "umi-plugin-pro": "^1.0.3",
陈帅 已提交
116
    "umi-types": "^0.5.9"
偏右 已提交
117
  },
118
  "optionalDependencies": {
119
    "puppeteer": "^2.0.0"
120
  },
A
afc163 已提交
121
  "engines": {
122
    "node": ">=10.0.0"
A
afc163 已提交
123
  },
陈帅 已提交
124 125 126 127 128 129
  "checkFiles": [
    "src/**/*.js*",
    "src/**/*.ts*",
    "src/**/*.less",
    "config/**/*.js*",
    "scripts/**/*.js"
Z
zombieJ 已提交
130 131
  ],
  "create-umi": {
陈帅 已提交
132 133 134 135 136 137 138 139
    "ignoreScript": [
      "docker*",
      "functions*",
      "site",
      "generateMock"
    ],
    "ignoreDependencies": [
      "netlify*",
陈帅 已提交
140
      "serverless"
陈帅 已提交
141
    ],
Z
zombieJ 已提交
142
    "ignore": [
Z
zombieJ 已提交
143 144
      ".dockerignore",
      ".git",
C
chenshuai2144 已提交
145
      ".github",
Z
zombieJ 已提交
146
      ".gitpod.yml",
Z
zombieJ 已提交
147 148 149 150 151 152
      "CODE_OF_CONDUCT.md",
      "Dockerfile",
      "Dockerfile.*",
      "lambda",
      "LICENSE",
      "netlify.toml",
Z
zombieJ 已提交
153
      "README.*.md",
Z
zombieJ 已提交
154
      "azure-pipelines.yml",
Z
zombieJ 已提交
155
      "docker",
156
      "CNAME",
Z
zombieJ 已提交
157
      "create-umi"
Z
zombieJ 已提交
158 159
    ]
  }
160
}