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