-
Notifications
You must be signed in to change notification settings - Fork 455
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "jackblog-vue",
"version": "2.3.0",
"description": "Jackblog vue 版",
"scripts": {
"start": "npm-run-all --sequential build start:dist",
"dev": "webpack-dev-server --open --progress --profile --watch",
"build": "npm-run-all clean --parallel compile",
"compile": "cross-env NODE_ENV=production webpack --progress --profile --bail",
"start:dist": "cross-env NODE_ENV=production nodemon ./server.js",
"clean": "rimraf dist",
"pm2-start": "pm2 start --no-daemon process.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackhutu/jackblog-vue.git"
},
"keywords": [
"vue",
"vue2",
"vuex",
"jackblog",
"webpack3"
],
"author": "Jack Hu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackhutu/jackblog-vue/issues"
},
"homepage": "https://github.com/jackhutu/jackblog-vue#readme",
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "7.1.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-runtime": "6.26.0",
"babylon": "6.18.0",
"bootstrap": "3.3.7",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.7.0",
"eslint-loader": "1.9.0",
"eslint-plugin-vue": "3.12.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"font-awesome": "4.7.0",
"html-webpack-plugin": "2.30.1",
"image-webpack-loader": "^3.4.2",
"jackblog-sass": "1.0.9",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"style-loader": "0.18.2",
"uglifyjs-webpack-plugin": "1.0.0-beta.1",
"universal-cookie": "^2.1.0",
"url-loader": "0.5.9",
"vee-validate": "2.0.0-rc.7",
"vue": "^2.4.4",
"vue-hot-reload-api": "2.1.0",
"vue-html-loader": "1.2.4",
"vue-loader": "13.0.4",
"vue-resource": "1.3.4",
"vue-router": "2.7.0",
"vue-strap": "github:wffranco/vue-strap",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.4.4",
"vue-toast": "3.1.0",
"vuex": "^2.4.0",
"vuex-router-sync": "^4.3.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"dependencies": {
"express": "4.15.4",
"serve-favicon": "^2.4.4"
}
}