package.json 2.1 KB
Newer Older
1
{
A
afc163 已提交
2
  "name": "ant-design-pro",
3 4 5 6
  "private": true,
  "scripts": {
    "start": "roadhog server",
    "build": "roadhog build",
N
nikogu 已提交
7 8
    "lint:style": "stylelint \"src/**/*.less\" --syntax less",
    "lint": "eslint --ext .js src mock tests && npm run lint:style",
A
afc163 已提交
9
    "precommit": "npm run lint",
偏右 已提交
10 11 12
    "site": "roadhog-api-doc static",
    "test": "jest",
    "test:all": "node ./tests/run-tests.js"
13 14 15 16 17 18 19 20 21 22 23
  },
  "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",
A
afc163 已提交
24
    "react": "^15.6.1",
25
    "react-document-title": "^2.0.3",
A
afc163 已提交
26
    "react-dom": "^15.6.1"
27 28 29
  },
  "devDependencies": {
    "babel-eslint": "^7.1.1",
偏右 已提交
30
    "babel-jest": "^21.0.0",
31 32 33 34 35
    "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",
偏右 已提交
36 37
    "cross-port-killer": "^1.0.1",
    "enzyme": "^2.9.1",
38 39 40 41 42
    "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",
N
nikogu 已提交
43
    "eslint-plugin-markdown": "^1.0.0-beta.6",
44
    "eslint-plugin-react": "^7.0.1",
A
afc163 已提交
45
    "gh-pages": "^1.0.0",
46
    "husky": "^0.13.4",
偏右 已提交
47
    "jest": "^21.0.1",
48
    "mockjs": "^1.0.1-beta3",
偏右 已提交
49 50
    "nightmare": "^2.10.0",
    "react-test-renderer": "^15.6.1",
51 52
    "redbox-react": "^1.3.2",
    "roadhog": "^1.0.2",
N
nikogu 已提交
53 54 55
    "roadhog-api-doc": "^0.1.5",
    "stylelint": "^8.0.0",
    "stylelint-config-standard": "^17.0.0"
偏右 已提交
56 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
  },
  "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"
    }
82 83
  }
}