-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
90 lines (90 loc) · 3.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vue-blog",
"version": "1.0.0",
"license": "MIT",
"description": "a blog platform built with vue2, koa2 and mongo",
"scripts": {
"start": "cross-env NODE_ENV=production node server/start.js",
"dev": "nodemon server/start.js",
"prod": "npm run build && npm start",
"build": "npm run build:client && npm run build:server",
"build:client": "rimraf ./client/dist && cross-env NODE_ENV=production webpack --config ./client/build/webpack.client.config.js --colors --profile --display-modules --progress",
"build:server": "cross-env NODE_ENV=production webpack --config ./client/build/webpack.server.config.js --colors --profile --display-modules --progress",
"analyze": "rimraf ./client/dist && cross-env NODE_ENV=production webpack --config ./client/build/webpack.client.config.js --json > stats.json && webpack-bundle-analyzer stats.json -p 1111",
"pm2": "npm run build && pm2 start pm2.json --env production"
},
"dependencies": {
"axios": "^0.16.0",
"element-ui": "^1.2.7",
"fastclick": "^1.0.6",
"font-awesome": "^4.7.0",
"highlight.js": "^9.10.0",
"koa": "^2.2.0",
"koa-bodyparser": "1",
"koa-compress": "^2.0.0",
"koa-connect-history-api-fallback": "^0.3.1",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.1",
"koa-onerror": "^3.1.0",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"lru-cache": "^4.0.2",
"marked": "^0.3.6",
"md5": "^2.2.1",
"moment": "^2.18.1",
"mongoose": "^4.9.3",
"require-dir": "^0.3.2",
"simplemde": "^1.11.2",
"ssri": "^5.2.2",
"strip-ansi": "3.0.1",
"vue": "^2.3.0",
"vue-router": "^2.5.2",
"vue-server-renderer": "^2.3.0",
"vuex": "^2.3.1",
"vuex-router-sync": "^4.1.2"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.0.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-component": "^0.9.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^4.5.0",
"event-source-polyfill": "^0.0.12",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "*",
"html-webpack-plugin": "^2.28.0",
"jsonwebtoken": "^7.3.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"style-loader": "^0.16.1",
"stylus": "0.52.4",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.8",
"vue-loader": "^12.0.2",
"vue-ssr-webpack-plugin": "^3.0.0",
"vue-template-compiler": "^2.3.0",
"webpack": "^2.3.2",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}