package.json 3.46 KB
Newer Older
1
{
afc163's avatar
afc163 committed
2
  "name": "ant-design-pro",
nikogu's avatar
nikogu committed
3
  "version": "0.3.1",
偏右's avatar
偏右 committed
4
  "description": "An out-of-box UI solution for enterprise applications",
5 6
  "private": true,
  "scripts": {
偏右's avatar
偏右 committed
7
    "precommit": "npm run lint-staged",
8 9
    "start": "roadhog dev",
    "start:no-proxy": "cross-env NO_PROXY=true roadhog dev",
10
    "build": "roadhog build",
nikogu's avatar
nikogu committed
11
    "site": "roadhog-api-doc static && gh-pages -d dist",
afc163's avatar
afc163 committed
12
    "analyze": "roadhog build --analyze",
nikogu's avatar
nikogu committed
13 14
    "lint:style": "stylelint \"src/**/*.less\" --syntax less",
    "lint": "eslint --ext .js src mock tests && npm run lint:style",
afc163's avatar
afc163 committed
15
    "lint:fix": "eslint --fix --ext .js src mock tests && npm run lint:style",
偏右's avatar
偏右 committed
16 17
    "lint-staged": "lint-staged",
    "lint-staged:js": "eslint --ext .js",
偏右's avatar
偏右 committed
18
    "test": "jest",
ddcat1115's avatar
ddcat1115 committed
19
    "test:comps": "jest ./src/components",
偏右's avatar
偏右 committed
20
    "test:all": "node ./tests/run-tests.js"
21 22
  },
  "dependencies": {
niko's avatar
niko committed
23
    "@antv/data-set": "^0.8.0",
24
    "@babel/polyfill": "^7.0.0-beta.36",
ddcat1115's avatar
ddcat1115 committed
25
    "antd": "^3.1.0",
afc163's avatar
afc163 committed
26
    "babel-runtime": "^6.9.2",
niko's avatar
niko committed
27 28
    "bizcharts": "^3.1.0-beta.4",
    "bizcharts-plugin-slider": "^2.0.1",
afc163's avatar
afc163 committed
29
    "classnames": "^2.2.5",
30
    "dva": "^2.1.0",
Andreas Cederström's avatar
Andreas Cederström committed
31
    "dva-loading": "^1.0.4",
jiang's avatar
jiang committed
32
    "enquire-js": "^0.1.1",
afc163's avatar
afc163 committed
33
    "fastclick": "^1.0.6",
34
    "lodash": "^4.17.4",
afc163's avatar
afc163 committed
35
    "lodash-decorators": "^4.4.1",
afc163's avatar
afc163 committed
36
    "moment": "^2.19.1",
37
    "numeral": "^2.0.6",
ddcat1115's avatar
ddcat1115 committed
38
    "omit.js": "^1.0.0",
39 40
    "prop-types": "^15.5.10",
    "qs": "^6.5.0",
jiang's avatar
jiang committed
41
    "rc-drawer-menu": "^0.5.0",
ddcat1115's avatar
ddcat1115 committed
42
    "react": "^16.2.0",
afc163's avatar
afc163 committed
43
    "react-container-query": "^0.9.1",
44
    "react-document-title": "^2.0.3",
ddcat1115's avatar
ddcat1115 committed
45
    "react-dom": "^16.2.0",
nikogu's avatar
nikogu committed
46
    "react-fittext": "^1.0.0"
47 48
  },
  "devDependencies": {
afc163's avatar
afc163 committed
49 50
    "@babel/preset-env": "^7.0.0-beta.36",
    "@babel/preset-react": "^7.0.0-beta.36",
陈帅's avatar
陈帅 committed
51
    "babel-eslint": "^8.1.2",
52
    "babel-jest": "^22.0.4",
53
    "babel-plugin-dva-hmr": "^0.4.1",
陈帅's avatar
陈帅 committed
54
    "babel-plugin-import": "^1.6.3",
afc163's avatar
afc163 committed
55
    "babel-plugin-transform-class-properties": "^6.24.1",
56
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
afc163's avatar
afc163 committed
57
    "cross-env": "^5.1.1",
偏右's avatar
偏右 committed
58
    "cross-port-killer": "^1.0.1",
afc163's avatar
afc163 committed
59
    "enzyme": "^3.1.0",
afc163's avatar
afc163 committed
60
    "enzyme-adapter-react-16": "^1.0.2",
陈帅's avatar
陈帅 committed
61
    "eslint": "^4.14.0",
afc163's avatar
afc163 committed
62
    "eslint-config-airbnb": "^16.0.0",
63
    "eslint-plugin-babel": "^4.0.0",
afc163's avatar
afc163 committed
64
    "eslint-plugin-compat": "^2.1.0",
陈帅's avatar
陈帅 committed
65 66
    "eslint-plugin-import": "^2.8.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
nikogu's avatar
nikogu committed
67
    "eslint-plugin-markdown": "^1.0.0-beta.6",
68
    "eslint-plugin-react": "^7.0.1",
afc163's avatar
afc163 committed
69
    "gh-pages": "^1.0.0",
afc163's avatar
afc163 committed
70
    "husky": "^0.14.3",
71 72 73
    "jest": "^22.0.4",
    "jsdom": "^11.5.1",
    "lint-staged": "^6.0.0",
74
    "mockjs": "^1.0.1-beta3",
陈帅's avatar
陈帅 committed
75 76 77
    "pro-download": "^1.0.1",
    "react-test-renderer": "^16.2.0",
    "redbox-react": "^1.5.0",
jim's avatar
jim committed
78
    "roadhog": "^2.0.5",
afc163's avatar
afc163 committed
79
    "roadhog-api-doc": "^0.3.3",
陈帅's avatar
陈帅 committed
80 81
    "rollbar": "^2.3.4",
    "stylelint": "^8.4.0",
82
    "stylelint-config-standard": "^18.0.0"
偏右's avatar
偏右 committed
83
  },
84 85 86
  "optionalDependencies": {
    "nightmare": "^2.10.0"
  },
偏右's avatar
偏右 committed
87
  "babel": {
afc163's avatar
afc163 committed
88
    "presets": [
afc163's avatar
afc163 committed
89 90
      "@babel/env",
      "@babel/react"
afc163's avatar
afc163 committed
91 92 93 94 95
    ],
    "plugins": [
      "transform-decorators-legacy",
      "transform-class-properties"
    ]
偏右's avatar
偏右 committed
96 97
  },
  "jest": {
afc163's avatar
afc163 committed
98 99 100 101 102 103
    "setupFiles": [
      "<rootDir>/tests/setupTests.js"
    ],
    "testMatch": [
      "**/?(*.)(spec|test|e2e).js?(x)"
    ],
偏右's avatar
偏右 committed
104
    "setupTestFrameworkScriptFile": "<rootDir>/tests/jasmine.js",
afc163's avatar
afc163 committed
105 106 107 108
    "moduleFileExtensions": [
      "js",
      "jsx"
    ],
偏右's avatar
偏右 committed
109 110 111
    "moduleNameMapper": {
      "\\.(css|less)$": "<rootDir>/tests/styleMock.js"
    }
偏右's avatar
偏右 committed
112 113 114
  },
  "lint-staged": {
    "**/*.{js,jsx}": "lint-staged:js",
afc163's avatar
afc163 committed
115
    "**/*.less": "stylelint --syntax less"
afc163's avatar
afc163 committed
116
  },
afc163's avatar
afc163 committed
117 118 119 120 121
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ]
122
}