-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.37 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "lee_blog_fe",
"version": "1.0.0",
"description": "个人博客页面前端",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:client": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.client.dev.conf.js",
"dev:server": "nodemon server/server.js",
"dev": "concurrently 'npm run dev:client' 'npm run dev:server'",
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.prod.conf.js",
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.conf.js",
"build": "npm run clean && npm run build:client && npm run build:server",
"start": "cross-env NODE_ENV=production server/server.js",
"clean": "rimraf public && rimraf server-build",
"lint": "eslint --ext .js --ext .jsx --ext .vue client/",
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue client/",
"precommit": "npm run lint-fix ",
"upload": "node build/upload.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haitaodesign/LeeBlogFE.git"
},
"keywords": [
"vue",
"ssr"
],
"author": "LiHaitao",
"license": "ISC",
"bugs": {
"url": "https://github.com/haitaodesign/LeeBlogFE/issues"
},
"homepage": "https://github.com/haitaodesign/LeeBlogFE#readme",
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.11.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"ejs": "^2.5.9",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"koa-send": "^4.1.3",
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.4.4",
"nodemon": "^1.17.3",
"postcss-loader": "^2.1.4",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^1.0.1",
"vue-loader": "^15.4.2",
"vue-server-renderer": "^2.5.16",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"acm-client": "^3.0.0",
"axios": "^0.18.0",
"github-markdown-css": "^2.10.0",
"iview": "^3.1.3",
"iview-editor": "^1.1.1",
"koa-body": "^4.0.4",
"koa2-cors": "^2.0.6",
"marked": "^0.5.1",
"material-design-icons-iconfont": "^3.0.3",
"normalize.css": "^8.0.0",
"qiniu": "^7.2.1",
"qs": "^6.5.2",
"vue": "^2.5.16",
"vue-meta": "^1.5.0",
"vue-router": "^3.0.1",
"vuetify": "^1.0.18",
"vuex": "^3.0.1"
}
}