package.json 966 字节
Newer Older
A
afc163 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
{
  "name": "ant-design",
  "version": "0.0.1",
  "description": "Design for ease",
  "homepage": "http://ant-design.github.io/",
  "repository": {
    "type": "git",
    "url": "https://github.com/ant-design/ant-design.github.io"
  },
  "bugs": {
    "url": "https://github.com/ant-design/ant-design.github.io/issues"
  },
  "dependencies": {
A
afc163 已提交
14
    "gregorian-calendar": "~3.0.0",
A
afc163 已提交
15
    "gregorian-calendar-format": "~3.0.1",
A
afc163 已提交
16 17 18 19
    "rc-calendar": "~3.3.0"
  },
  "devDependencies": {
    "css-loader": "~0.13.1",
A
afc163 已提交
20
    "gh-pages-cli": "~0.2.0",
A
afc163 已提交
21 22
    "json-loader": "~0.5.1",
    "jsx-loader": "~0.13.2",
A
afc163 已提交
23
    "lodash": "~3.8.0",
A
afc163 已提交
24 25
    "nico-jsx": "~0.5.3",
    "style-loader": "~0.12.2",
A
afc163 已提交
26 27
    "webpack": "~1.9.7",
    "webpack-dev-middleware": "~1.0.11"
A
update  
afc163 已提交
28 29
  },
  "scripts": {
A
afc163 已提交
30
    "build": "npm run clean && webpack && nico build",
A
update  
afc163 已提交
31
    "start": "npm run clean && nico server --watch",
A
afc163 已提交
32 33
    "clean": "rm -rf _site",
    "deploy": "npm run build && gh-pages -d _site -b master"
A
afc163 已提交
34 35
  }
}