-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.23 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
{
"name": "blog",
"version": "1.0.0",
"description": "Lipper的个人博客",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack.config.dev.js --watch",
"dll": "cross-env NODE_ENV=production webpack --config dll.config.prod.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js",
"docsify": "docsify serve docs",
"start": "node ./server/bin/www",
"apidoc": "apidoc -i ./server -o ./public/apidoc/"
},
"apidoc": {
"title": "node.js自动生成接口文档",
"url": "http://192.168.18.17:3000",
"sampleUrl": "http://192.168.18.17:3000",
"name": "lipper博客",
"version": "1.0.0"
},
"author": "Lipper",
"license": "ISC",
"dependencies": {
"antd": "^2.13.9",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"express-session": "^1.15.5",
"g2": "^2.3.13",
"g2-react": "^1.3.2",
"jade": "^1.11.0",
"morgan": "^1.8.2",
"mysql": "^2.13.0",
"promise-polyfill": "^6.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.7.1",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3",
"wowjs": "^1.1.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-import": "^1.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"react-addons-perf": "^15.4.2",
"redux-immutable-state-invariant": "^2.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.1.0"
}
}