package.json 1.1 KB
Newer Older
A
afc163 已提交
1
{
A
afc163 已提交
2
  "name": "antd",
A
afc163 已提交
3 4 5 6 7 8 9 10 11 12 13
  "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
    "rc-calendar": "~3.8.0",
A
afc163 已提交
17 18
    "rc-style": "git://github.com/ant-design/style.git",
    "rc-tooltip": "~1.2.0"
A
afc163 已提交
19 20
  },
  "devDependencies": {
A
afc163 已提交
21 22
    "babel-core": "~5.4.7",
    "babel-loader": "~5.1.3",
A
afc163 已提交
23
    "concurrently": "~0.1.0",
A
afc163 已提交
24
    "css-loader": "~0.13.1",
A
afc163 已提交
25
    "gh-pages-cli": "~0.2.0",
A
afc163 已提交
26
    "json-loader": "~0.5.1",
A
afc163 已提交
27 28
    "less": "~2.5.1",
    "less-loader": "~2.2.0",
A
afc163 已提交
29
    "lodash": "~3.8.0",
A
afc163 已提交
30 31
    "nico-jsx": "~0.5.3",
    "style-loader": "~0.12.2",
A
afc163 已提交
32
    "webpack": "~1.9.7"
A
update  
afc163 已提交
33 34
  },
  "scripts": {
A
afc163 已提交
35
    "build": "npm run clean && webpack && nico build",
A
afc163 已提交
36
    "start": "npm run clean && concurrent -r 'webpack -w --watch-aggregate-timeout 0' 'nico server --watch'",
A
afc163 已提交
37 38
    "clean": "rm -rf _site",
    "deploy": "npm run build && gh-pages -d _site -b master"
A
afc163 已提交
39 40
  }
}