-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "antd-comment",
"version": "0.1.0",
"description": "",
"author": "",
"main": "lib/index.js",
"entry": {
"index": "./demo/index.jsx"
},
"license": "ISC",
"repository": {
"type": "git",
"url": ""
},
"publishConfig": {
"registry": "http://registry.npm.alibaba-inc.com"
},
"devDependencies": {
"atool-build": "^0.9.3",
"autoprefixer": "^6.6.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-antd": "^0.5.1",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.1",
"dora": "^0.4.3",
"dora-plugin-proxy": "^0.8.5",
"dora-plugin-webpack": "^0.8.1",
"dora-plugin-webpack-hmr": "^0.2.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-loader": "^1.2.1",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"scripts": {
"start": "dora --plugins \"proxy,webpack,webpack-hmr\"",
"build": "npm run build:lib && npm run build:umd",
"build:lib": "./node_modules/.bin/babel src -d lib --copy-files",
"build:umd": "./node_modules/.bin/webpack ./src/index.jsx dist/index.js --config ./webpack.component.js",
"prepublish": "npm run build",
"lint": "eslint ./ --ext '.js,.jsx'"
},
"files": [
"lib",
"dist"
],
"dependencies": {
"antd": "^2.12.0",
"autosize": "^3.0.21",
"highlight.js": "^9.12.0",
"marked": "^0.3.6",
"moment": "^2.18.1",
"shortid": "^2.2.8",
"showdown": "^1.7.1"
}
}