package.json 2.19 KB
Newer Older
1
{
afc163's avatar
afc163 committed
2
  "name": "ant-design-pro",
3 4
  "private": true,
  "scripts": {
5
    "precommit": "npm run lint",
6
    "start": "roadhog server",
nikogu's avatar
nikogu committed
7
    "start:no-proxy": "NO_PROXY=true roadhog server",
8
    "build": "roadhog build",
9
    "site": "roadhog-api-doc static",
nikogu's avatar
nikogu committed
10 11
    "lint:style": "stylelint \"src/**/*.less\" --syntax less",
    "lint": "eslint --ext .js src mock tests && npm run lint:style",
偏右's avatar
偏右 committed
12 13
    "test": "jest",
    "test:all": "node ./tests/run-tests.js"
14 15 16 17 18 19 20 21 22 23 24
  },
  "dependencies": {
    "antd": "next",
    "dva": "^1.2.1",
    "g-cloud": "^1.0.2-beta",
    "g2": "^2.3.8",
    "g2-plugin-slider": "^1.2.1",
    "lodash": "^4.17.4",
    "numeral": "^2.0.6",
    "prop-types": "^15.5.10",
    "qs": "^6.5.0",
afc163's avatar
afc163 committed
25
    "react": "^15.6.1",
26
    "react-document-title": "^2.0.3",
afc163's avatar
afc163 committed
27
    "react-dom": "^15.6.1"
28 29 30
  },
  "devDependencies": {
    "babel-eslint": "^7.1.1",
偏右's avatar
偏右 committed
31
    "babel-jest": "^21.0.0",
32 33 34 35 36
    "babel-plugin-dva-hmr": "^0.3.2",
    "babel-plugin-import": "^1.2.1",
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-plugin-transform-runtime": "^6.9.0",
    "babel-runtime": "^6.9.2",
偏右's avatar
偏右 committed
37 38
    "cross-port-killer": "^1.0.1",
    "enzyme": "^2.9.1",
39 40 41 42 43
    "eslint": "^3.0.0",
    "eslint-config-airbnb": "latest",
    "eslint-plugin-babel": "^4.0.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^5.0.1",
nikogu's avatar
nikogu committed
44
    "eslint-plugin-markdown": "^1.0.0-beta.6",
45
    "eslint-plugin-react": "^7.0.1",
afc163's avatar
afc163 committed
46
    "gh-pages": "^1.0.0",
47
    "husky": "^0.13.4",
偏右's avatar
偏右 committed
48
    "jest": "^21.0.1",
49
    "mockjs": "^1.0.1-beta3",
偏右's avatar
偏右 committed
50 51
    "nightmare": "^2.10.0",
    "react-test-renderer": "^15.6.1",
52 53
    "redbox-react": "^1.3.2",
    "roadhog": "^1.0.2",
nikogu's avatar
nikogu committed
54
    "roadhog-api-doc": "^0.1.8",
nikogu's avatar
nikogu committed
55
    "stylelint": "^8.1.0",
nikogu's avatar
nikogu committed
56
    "stylelint-config-standard": "^17.0.0"
偏右's avatar
偏右 committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  },
  "babel": {
    "presets": [
      "es2015",
      "stage-0",
      "react"
    ],
    "plugins": [
      "transform-decorators-legacy"
    ]
  },
  "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"
    }
83 84
  }
}