package.json 5.4 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 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",
陈帅 已提交
16
    "fetch:blocks": "node ./scripts/fetch-blocks.js",
陈帅 已提交
17 18 19
    "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",
20
    "lint": "npm run lint:js && npm run lint:ts && npm run lint:style && npm run lint:prettier",
偏右 已提交
21 22
    "lint-staged": "lint-staged",
    "lint-staged:js": "eslint --ext .js",
何乐 已提交
23
    "lint-staged:ts": "tslint",
陈帅 已提交
24
    "lint:fix": "eslint --fix --ext .js src tests && npm run lint:style && npm run tslint:fix",
陈帅 已提交
25
    "lint:js": "eslint --ext .js src tests",
陈帅 已提交
26
    "lint:prettier": "check-prettier lint",
陈帅 已提交
27
    "lint:style": "stylelint --fix 'src/**/*.less' --syntax less",
陈帅 已提交
28
    "lint:ts": "tslint -p . -c tslint.yml",
陈帅 已提交
29
    "prettier": " check-prettier write",
期贤 已提交
30
    "site": "npm run fetch:blocks && umi build",
陈帅 已提交
31
    "start": "umi dev",
陈帅 已提交
32
    "start:no-mock": "cross-env MOCK=none umi dev",
愚道 已提交
33
    "test": "umi test",
J
jim 已提交
34
    "test:all": "node ./tests/run-tests.js",
陈帅 已提交
35 36
    "test:component": "umi test ./src/components",
    "tslint:fix": "tslint --fix 'src/**/*.ts*'"
37
  },
陈帅 已提交
38 39 40 41
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint-staged"
    }
42
  },
陈帅 已提交
43 44 45
  "lint-staged": {
    "**/*.less": "stylelint --syntax less",
    "**/*.{js,jsx}": "npm run lint-staged:js",
Z
zombieJ 已提交
46
    "**/*.{js,ts,tsx,md,json,jsx,less}": [ "npm run prettier", "git add" ],
陈帅 已提交
47
    "**/*.{ts,tsx}": "npm run lint-staged:ts"
陈帅 已提交
48
  },
Z
zombieJ 已提交
49
  "browserslist": [ "> 1%", "last 2 versions", "not ie <= 10" ],
50
  "dependencies": {
陈帅 已提交
51
    "@ant-design/pro-layout": "^4.2.0",
偏右 已提交
52
    "@antv/data-set": "^0.10.1",
陈帅 已提交
53
    "@types/qs": "^6.5.3",
54
    "antd": "^3.16.1",
陈帅 已提交
55
    "classnames": "^2.2.6",
A
afc163 已提交
56 57
    "dva": "^2.4.0",
    "lodash": "^4.17.10",
58
    "lodash-decorators": "^6.0.0",
A
afc163 已提交
59
    "memoize-one": "^5.0.0",
陈帅 已提交
60
    "moment": "^2.22.2",
61
    "omit.js": "^1.0.0",
A
afc163 已提交
62
    "path-to-regexp": "^2.4.0",
陈帅 已提交
63
    "prop-types": "^15.7.2",
陈帅 已提交
64
    "qs": "^6.7.0",
A
afc163 已提交
65
    "rc-animate": "^2.4.4",
何乐 已提交
66
    "react": "^16.8.5",
J
jim 已提交
67
    "react-container-query": "^0.11.0",
68
    "react-copy-to-clipboard": "^5.0.1",
69
    "react-document-title": "^2.0.3",
陈帅 已提交
70 71
    "react-dom": "^16.7.0",
    "react-media": "^1.9.2",
陈帅 已提交
72 73 74 75 76 77 78
    "react-media-hook2": "^1.0.2",
    "umi": "^2.7.0-beta.2",
    "umi-plugin-ga": "^1.1.3",
    "umi-plugin-locale": "^2.8.0-beta.1",
    "umi-plugin-pro-block": "^1.3.0",
    "umi-plugin-react": "^1.8.0-beta.1",
    "umi-request": "^1.0.7"
79 80
  },
  "devDependencies": {
陈帅 已提交
81
    "@types/classnames": "^2.2.7",
82
    "@types/history": "^4.7.2",
83
    "@types/lodash": "^4.14.123",
Y
Yu 已提交
84
    "@types/react": "^16.8.1",
陈帅 已提交
85
    "@types/react-document-title": "^2.0.3",
偏右 已提交
86
    "@types/react-dom": "^16.0.11",
陈帅 已提交
87
    "antd-pro-merge-less": "^1.0.0",
Y
Yu 已提交
88
    "antd-theme-webpack-plugin": "^1.2.0",
陈帅 已提交
89
    "babel-eslint": "^10.0.1",
Y
Yu 已提交
90
    "chalk": "^2.4.2",
H
Heyward Fann 已提交
91
    "check-prettier": "^1.0.1",
Y
Yu 已提交
92
    "cross-env": "^5.2.0",
偏右 已提交
93
    "cross-port-killer": "^1.0.1",
Y
Yu 已提交
94 95 96
    "enzyme": "^3.9.0",
    "eslint": "^5.13.0",
    "eslint-config-airbnb": "^17.1.0",
C
chen shuai 已提交
97
    "eslint-config-prettier": "^4.1.0",
陈帅 已提交
98
    "eslint-plugin-babel": "^5.3.0",
Y
Yu 已提交
99 100
    "eslint-plugin-compat": "^2.6.3",
    "eslint-plugin-import": "^2.16.0",
C
chen shuai 已提交
101
    "eslint-plugin-jsx-a11y": "^6.2.1",
Y
Yu 已提交
102 103
    "eslint-plugin-markdown": "^1.0.0",
    "eslint-plugin-react": "^7.12.4",
陈帅 已提交
104
    "express": "^4.16.4",
Y
Yu 已提交
105
    "gh-pages": "^2.0.1",
106
    "husky": "^2.2.0",
C
chen shuai 已提交
107
    "jest-puppeteer": "^4.1.0",
陈帅 已提交
108
    "jsdom-global": "^3.0.2",
陈帅 已提交
109
    "less": "^3.9.0",
Y
Yu 已提交
110
    "lint-staged": "^8.1.1",
陈帅 已提交
111
    "merge-umi-mock-data": "^1.0.4",
陈帅 已提交
112
    "mockjs": "^1.0.1-beta3",
113
    "netlify-lambda": "^1.4.3",
陈帅 已提交
114
    "node-fetch": "^2.6.0",
陈帅 已提交
115
    "prettier": "^1.17.0",
116
    "serverless-http": "^2.0.1",
陈帅 已提交
117
    "slash2": "^2.0.0",
Y
Yu 已提交
118 119 120
    "stylelint": "^9.10.1",
    "stylelint-config-css-modules": "^1.3.0",
    "stylelint-config-prettier": "^5.0.0",
121
    "stylelint-config-rational-order": "^0.1.0",
Y
Yu 已提交
122
    "stylelint-config-standard": "^18.2.0",
123
    "stylelint-declaration-block-no-ignored-properties": "^2.1.0",
Y
Yu 已提交
124 125 126
    "stylelint-order": "^2.0.0",
    "tslint": "^5.12.1",
    "tslint-config-prettier": "^1.17.0",
何乐 已提交
127
    "tslint-eslint-rules": "^5.4.0",
陈帅 已提交
128
    "tslint-react": "^3.6.0"
偏右 已提交
129
  },
130
  "optionalDependencies": {
Y
Yu 已提交
131
    "puppeteer": "^1.12.1"
132
  },
A
afc163 已提交
133
  "engines": {
134
    "node": ">=10.0.0"
A
afc163 已提交
135
  },
陈帅 已提交
136 137 138 139 140 141
  "checkFiles": [
    "src/**/*.js*",
    "src/**/*.ts*",
    "src/**/*.less",
    "config/**/*.js*",
    "scripts/**/*.js"
Z
zombieJ 已提交
142 143
  ],
  "create-umi": {
Z
zombieJ 已提交
144 145 146 147
    "copy": [
      ["create-umi/README.md", "README.md"],
      ["create-umi/package.json", "package.json"]
    ],
Z
zombieJ 已提交
148
    "ignore": [
Z
zombieJ 已提交
149 150 151
      ".dockerignore",
      ".git",
      ".gitpod.yml",
Z
zombieJ 已提交
152 153 154 155 156 157
      "CODE_OF_CONDUCT.md",
      "Dockerfile",
      "Dockerfile.*",
      "lambda",
      "LICENSE",
      "netlify.toml",
Z
zombieJ 已提交
158
      "README.*.md",
Z
zombieJ 已提交
159 160
      "scripts",
      "azure-pipelines.yml",
Z
zombieJ 已提交
161 162
      "docker",
      "create-umi"
Z
zombieJ 已提交
163 164 165
    ]
  }
}