package.json 1.5 KB
Newer Older
A
afc163 已提交
1
{
A
afc163 已提交
2
  "name": "antd",
A
afc163 已提交
3
  "version": "0.0.1",
A
afc163 已提交
4
  "title": "Ant Design",
A
afc163 已提交
5
  "description": "下一个设计&前端框架",
A
afc163 已提交
6 7 8
  "homepage": "http://ant-design.github.io/",
  "repository": {
    "type": "git",
A
afc163 已提交
9
    "url": "https://github.com/ant-design/ant-design"
A
afc163 已提交
10 11
  },
  "bugs": {
A
afc163 已提交
12
    "url": "https://github.com/ant-design/ant-design/issues"
A
afc163 已提交
13 14
  },
  "dependencies": {
A
afc163 已提交
15
    "gregorian-calendar": "~3.0.0",
A
afc163 已提交
16
    "gregorian-calendar-format": "~3.0.1",
A
afc163 已提交
17
    "rc-calendar": "~3.8.0",
Y
yiminghe 已提交
18
    "rc-dialog": "~4.3.0",
Y
yiminghe 已提交
19 20
    "rc-dropdown": "~1.0.0",
    "rc-menu": "~3.3.0",
夏奈 已提交
21
    "rc-progress": "~1.0.0",
然则 已提交
22
    "rc-select": "~3.3.2",
Y
yiminghe 已提交
23
    "rc-tabs": "~5.1.0",
Y
yiminghe 已提交
24
    "rc-tooltip": "~2.0.1"
A
afc163 已提交
25 26
  },
  "devDependencies": {
A
afc163 已提交
27 28
    "babel-core": "~5.4.7",
    "babel-loader": "~5.1.3",
A
afc163 已提交
29
    "concurrently": "~0.1.0",
A
afc163 已提交
30
    "css-loader": "~0.13.1",
A
afc163 已提交
31 32
    "eslint": "~0.22.1",
    "eslint-plugin-react": "~2.5.0",
A
afc163 已提交
33
    "extract-text-webpack-plugin": "~0.8.1",
A
afc163 已提交
34
    "gh-pages-cli": "~0.2.0",
A
afc163 已提交
35
    "json-loader": "~0.5.1",
A
afc163 已提交
36 37
    "less": "~2.5.1",
    "less-loader": "~2.2.0",
A
afc163 已提交
38
    "lodash": "~3.8.0",
A
afc163 已提交
39
    "nico-jsx": "~0.5.5",
A
afc163 已提交
40
    "style-loader": "~0.12.2",
A
afc163 已提交
41
    "webpack": "~1.9.7"
A
update  
afc163 已提交
42 43
  },
  "scripts": {
A
afc163 已提交
44
    "build": "npm run clean && webpack && nico build",
A
afc163 已提交
45
    "start": "npm run clean && concurrent -r 'webpack -w --watch-aggregate-timeout 0' 'nico server --watch'",
A
afc163 已提交
46
    "clean": "rm -rf _site",
A
afc163 已提交
47
    "deploy": "npm run build && gh-pages -d _site -b gh-pages",
A
afc163 已提交
48 49
    "lint": "eslint components index.js --ext '.js,.jsx'",
    "test": "webpack && npm run lint"
A
afc163 已提交
50 51
  }
}