forked from young-cruz/react_softwarelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 953 Bytes
/
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
{
"name": "antd-demo",
"version": "1.0.0",
"private": true,
"entry": {
"index": "./src/entry/index.jsx"
},
"dependencies": {
"antd": "0.12.x",
"atool-build": "0.6.x",
"babel-plugin-antd": "0.2.x",
"es3ify-loader": "^0.1.0",
"react": "0.14.x",
"react-dom": "0.14.x",
"react-markdown": "^2.1.0"
},
"devDependencies": {
"dora": "0.3.x",
"dora-plugin-webpack": "0.6.x",
"dora-plugin-hmr": "0.5.x",
"dora-plugin-livereload": "0.3.x",
"dora-plugin-proxy": "0.6.x",
"eslint": "2.x",
"eslint-config-airbnb": "6.x",
"eslint-plugin-react": "4.x",
"pre-commit": "1.x"
},
"pre-commit": [
"lint"
],
"scripts": {
"start": "npm run dev",
"dev": "dora -p 8001 --plugins webpack,hmr,proxy,livereload?enableJs=false",
"lint": "eslint --ext .js,.jsx src",
"build": "atool-build -o ./dist/${npm_package_family}/${npm_package_name}/${npm_package_version}"
}
}