package.json 5.1 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": "cross-env ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION=site 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",
17
    "fetch:blocks": "fetch-blocks",
陈帅 已提交
18
    "format-imports": "import-sort --write '**/*.{js,jsx,ts,tsx}'",
期贤 已提交
19 20
    "functions:build": "netlify-lambda build ./lambda",
    "functions:run": "cross-env NODE_ENV=dev netlify-lambda serve ./lambda",
21
    "gh-pages": "cp CNAME ./dist/ && gh-pages -d dist",
陈帅 已提交
22
    "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
偏右 已提交
23
    "lint-staged": "lint-staged",
陈帅 已提交
24 25 26
    "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",
    "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
陈帅 已提交
27
    "lint:prettier": "check-prettier lint",
L
lonwern 已提交
28
    "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
陈帅 已提交
29
    "prettier": "prettier -c --write **/*",
30
    "site": "npm run fetch:blocks && npm run build && npm run functions: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
    "test:component": "umi test ./src/components"
36
  },
陈帅 已提交
37 38 39 40
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint-staged"
    }
41
  },
陈帅 已提交
42 43
  "lint-staged": {
    "**/*.less": "stylelint --syntax less",
陈帅 已提交
44 45
    "**/*.{js,jsx,tsx,ts,less,md,json}": [
      "prettier --write",
陈帅 已提交
46 47
      "git add"
    ],
陈帅 已提交
48 49
    "**/*.{js,jsx}": "npm run lint-staged:js",
    "**/*.{js,ts,tsx}": "npm run lint-staged:js"
陈帅 已提交
50
  },
陈帅 已提交
51 52 53 54 55
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ],
56
  "dependencies": {
陈帅 已提交
57
    "@ant-design/pro-layout": "^4.5.0",
A
afc163 已提交
58 59
    "@antv/data-set": "^0.10.2",
    "antd": "^3.19.1",
陈帅 已提交
60
    "classnames": "^2.2.6",
A
afc163 已提交
61 62 63 64 65 66
    "dva": "^2.4.1",
    "lodash": "^4.17.11",
    "lodash-decorators": "^6.0.1",
    "memoize-one": "^5.0.4",
    "moment": "^2.24.0",
    "omit.js": "^1.0.2",
偏右 已提交
67
    "path-to-regexp": "^3.0.0",
陈帅 已提交
68
    "prop-types": "^15.7.2",
陈帅 已提交
69
    "qs": "^6.7.0",
A
afc163 已提交
70 71
    "rc-animate": "^2.8.3",
    "react": "^16.8.6",
J
jim 已提交
72
    "react-container-query": "^0.11.0",
73
    "react-copy-to-clipboard": "^5.0.1",
74
    "react-document-title": "^2.0.3",
A
afc163 已提交
75
    "react-dom": "^16.8.6",
陈帅 已提交
76
    "react-media": "^1.9.2",
A
afc163 已提交
77
    "react-media-hook2": "^1.0.5",
陈帅 已提交
78
    "redux": "^4.0.1",
陈帅 已提交
79
    "umi": "^2.7.2",
A
afc163 已提交
80
    "umi-plugin-pro-block": "^1.3.2",
陈帅 已提交
81
    "umi-plugin-react": "^1.8.2",
A
afc163 已提交
82
    "umi-request": "^1.0.7"
83 84
  },
  "devDependencies": {
陈帅 已提交
85
    "@ant-design/colors": "^3.1.0",
L
lijiehua 已提交
86
    "@types/classnames": "^2.2.7",
87
    "@types/history": "^4.7.2",
陈帅 已提交
88
    "@types/jest": "^24.0.13",
L
lijiehua 已提交
89
    "@types/lodash": "^4.14.133",
陈帅 已提交
90
    "@types/qs": "^6.5.3",
A
afc163 已提交
91
    "@types/react": "^16.8.19",
陈帅 已提交
92
    "@types/react-document-title": "^2.0.3",
A
afc163 已提交
93
    "@types/react-dom": "^16.8.4",
陈帅 已提交
94
    "@umijs/fabric": "^1.0.4",
陈帅 已提交
95
    "babel-eslint": "^10.0.1",
Y
Yu 已提交
96
    "chalk": "^2.4.2",
A
afc163 已提交
97
    "check-prettier": "^1.0.3",
Y
Yu 已提交
98
    "cross-env": "^5.2.0",
A
afc163 已提交
99
    "cross-port-killer": "^1.1.1",
Y
Yu 已提交
100
    "enzyme": "^3.9.0",
A
afc163 已提交
101 102
    "eslint": "^5.16.0",
    "express": "^4.17.1",
103
    "fetch-blocks": "^1.0.0",
Y
Yu 已提交
104
    "gh-pages": "^2.0.1",
A
afc163 已提交
105
    "husky": "^2.3.0",
陈帅 已提交
106 107 108 109
    "import-sort-cli": "^6.0.0",
    "import-sort-parser-babylon": "^6.0.0",
    "import-sort-parser-typescript": "^6.0.0",
    "import-sort-style-module": "^6.0.0",
A
afc163 已提交
110
    "jest-puppeteer": "^4.2.0",
陈帅 已提交
111
    "jsdom-global": "^3.0.2",
A
afc163 已提交
112
    "lint-staged": "^8.1.7",
陈帅 已提交
113
    "mockjs": "^1.0.1-beta3",
A
afc163 已提交
114
    "netlify-lambda": "^1.4.13",
陈帅 已提交
115
    "node-fetch": "^2.6.0",
A
afc163 已提交
116
    "prettier": "^1.17.1",
偏右 已提交
117
    "pro-download": "1.0.1",
A
afc163 已提交
118
    "serverless-http": "^2.0.2",
陈帅 已提交
119
    "slash2": "^2.0.0",
120
    "stylelint": "^10.1.0",
121 122
    "umi-plugin-ga": "^1.1.3",
    "umi-plugin-pro": "^1.0.2",
A
afc163 已提交
123
    "umi-types": "^0.3.8",
124
    "webpack-theme-color-replacer": "^1.2.15"
偏右 已提交
125
  },
126
  "optionalDependencies": {
A
afc163 已提交
127
    "puppeteer": "^1.17.0"
128
  },
A
afc163 已提交
129
  "engines": {
130
    "node": ">=10.0.0"
A
afc163 已提交
131
  },
陈帅 已提交
132 133 134 135 136 137
  "checkFiles": [
    "src/**/*.js*",
    "src/**/*.ts*",
    "src/**/*.less",
    "config/**/*.js*",
    "scripts/**/*.js"
Z
zombieJ 已提交
138 139
  ],
  "create-umi": {
陈帅 已提交
140 141 142 143 144 145 146 147 148 149 150
    "ignoreScript": [
      "docker*",
      "functions*",
      "site",
      "generateMock"
    ],
    "ignoreDependencies": [
      "netlify*",
      "serverless",
      "express"
    ],
Z
zombieJ 已提交
151
    "ignore": [
Z
zombieJ 已提交
152 153 154
      ".dockerignore",
      ".git",
      ".gitpod.yml",
Z
zombieJ 已提交
155 156 157 158 159 160
      "CODE_OF_CONDUCT.md",
      "Dockerfile",
      "Dockerfile.*",
      "lambda",
      "LICENSE",
      "netlify.toml",
Z
zombieJ 已提交
161
      "README.*.md",
Z
zombieJ 已提交
162
      "azure-pipelines.yml",
Z
zombieJ 已提交
163 164
      "docker",
      "create-umi"
Z
zombieJ 已提交
165 166
    ]
  }
167
}