package.json 2.96 KB
Newer Older
1
{
afc163's avatar
afc163 committed
2
  "name": "ant-design-pro",
nikogu's avatar
nikogu committed
3
  "version": "0.1.10",
偏右'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
    "start": "roadhog server",
nikogu's avatar
nikogu committed
9
    "start:no-proxy": "NO_PROXY=true roadhog server",
10
    "build": "roadhog build",
11
    "site": "roadhog-api-doc static",
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 19
    "test": "jest",
    "test:all": "node ./tests/run-tests.js"
20 21 22
  },
  "dependencies": {
    "antd": "next",
afc163's avatar
afc163 committed
23
    "classnames": "^2.2.5",
afc163's avatar
afc163 committed
24
    "core-js": "^2.5.1",
afc163's avatar
afc163 committed
25
    "dva": "^2.0.3",
26
    "lodash": "^4.17.4",
afc163's avatar
afc163 committed
27 28
    "lodash-decorators": "^4.4.1",
    "lodash.clonedeep": "^4.5.0",
afc163's avatar
afc163 committed
29
    "moment": "^2.19.1",
30 31 32
    "numeral": "^2.0.6",
    "prop-types": "^15.5.10",
    "qs": "^6.5.0",
afc163's avatar
afc163 committed
33
    "react": "^16.0.0",
34
    "react-document-title": "^2.0.3",
偏右's avatar
偏右 committed
35 36
    "react-dom": "^16.0.0",
    "react-fittext": "^1.0.0"
37 38
  },
  "devDependencies": {
afc163's avatar
afc163 committed
39
    "babel-eslint": "^8.0.1",
偏右's avatar
偏右 committed
40
    "babel-jest": "^21.0.0",
41 42
    "babel-plugin-dva-hmr": "^0.3.2",
    "babel-plugin-import": "^1.2.1",
afc163's avatar
afc163 committed
43
    "babel-plugin-transform-class-properties": "^6.24.1",
44 45
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-plugin-transform-runtime": "^6.9.0",
afc163's avatar
afc163 committed
46 47
    "babel-preset-env": "^1.6.1",
    "babel-preset-react": "^6.24.1",
48
    "babel-runtime": "^6.9.2",
偏右's avatar
偏右 committed
49
    "cross-port-killer": "^1.0.1",
afc163's avatar
afc163 committed
50
    "enzyme": "^3.1.0",
afc163's avatar
afc163 committed
51
    "enzyme-adapter-react-16": "^1.0.2",
niko's avatar
niko committed
52
    "eslint": "^4.8.0",
afc163's avatar
afc163 committed
53
    "eslint-config-airbnb": "^16.0.0",
54 55
    "eslint-plugin-babel": "^4.0.0",
    "eslint-plugin-import": "^2.2.0",
afc163's avatar
afc163 committed
56
    "eslint-plugin-jsx-a11y": "^6.0.0",
nikogu's avatar
nikogu committed
57
    "eslint-plugin-markdown": "^1.0.0-beta.6",
58
    "eslint-plugin-react": "^7.0.1",
afc163's avatar
afc163 committed
59
    "gh-pages": "^1.0.0",
afc163's avatar
afc163 committed
60
    "husky": "^0.14.3",
偏右's avatar
偏右 committed
61
    "jest": "^21.0.1",
偏右's avatar
偏右 committed
62
    "lint-staged": "^4.3.0",
63
    "mockjs": "^1.0.1-beta3",
afc163's avatar
afc163 committed
64
    "react-container-query": "^0.9.1",
afc163's avatar
afc163 committed
65
    "react-test-renderer": "^16.0.0",
66
    "redbox-react": "^1.3.2",
ddcat1115's avatar
ddcat1115 committed
67
    "roadhog": "^1.2.1",
nikogu's avatar
nikogu committed
68
    "roadhog-api-doc": "^0.1.8",
nikogu's avatar
nikogu committed
69
    "stylelint": "^8.1.0",
nikogu's avatar
nikogu committed
70
    "stylelint-config-standard": "^17.0.0"
偏右's avatar
偏右 committed
71
  },
72 73 74
  "optionalDependencies": {
    "nightmare": "^2.10.0"
  },
偏右's avatar
偏右 committed
75 76
  "babel": {
    "presets": [
afc163's avatar
afc163 committed
77
      "env",
偏右's avatar
偏右 committed
78 79 80
      "react"
    ],
    "plugins": [
afc163's avatar
afc163 committed
81 82
      "transform-decorators-legacy",
      "transform-class-properties"
偏右's avatar
偏右 committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    ]
  },
  "jest": {
    "setupFiles": [
      "<rootDir>/tests/setupTests.js"
    ],
    "testMatch": [
      "**/?(*.)(spec|test|e2e).js?(x)"
    ],
    "setupTestFrameworkScriptFile": "<rootDir>/tests/jasmine.js",
    "moduleFileExtensions": [
      "js",
      "jsx"
    ],
    "moduleNameMapper": {
      "\\.(css|less)$": "<rootDir>/tests/styleMock.js"
    }
偏右's avatar
偏右 committed
100 101 102
  },
  "lint-staged": {
    "**/*.{js,jsx}": "lint-staged:js",
afc163's avatar
afc163 committed
103
    "**/*.less": "stylelint --syntax less"
104 105
  }
}