-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.53 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "isomorphic-vue",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "cross-env NODE_ENV=development babel-node ./tools/run start",
"start:dist": "node ./build/server.js",
"clean": "babel-node ./tools/run clean",
"build": "cross-env NODE_ENV=production babel-node ./tools/run build",
"build:client": "cross-env NODE_ENV=production babel-node ./tools/run build-client",
"build:server": "cross-env NODE_ENV=production babel-node ./tools/run build-server",
"analyse": "babel-node ./tools/analyse",
"analyse:client": "webpack-bundle-analyzer build/webpack-client-stats.json build/public",
"analyse:server": "webpack-bundle-analyzer build/webpack-server-stats.json",
"test": "mocha \"src/**/*.test.js\" --require babel-register --require tests/setup.js",
"eslint": "eslint --ext .js,.vue src/"
},
"repository": {
"type": "git",
"url": "https://github.com/wujjpp/isomorphic-vue.git"
},
"keywords": [
"vue",
"starter kit",
"universal",
"isomorphic",
"webpack",
"express",
"babel",
"es6",
"template engine"
],
"author": "Wu Jian Ping <[email protected]>",
"maintainers": [
"Wu Jian Ping <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wujjpp/isomorphic-vue/issues"
},
"dependencies": {
"axios": "^0.17.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"helmet": "^3.9.0",
"history": "^4.7.2",
"lodash": "^4.17.4",
"markdown-loader": "^2.0.1",
"moment": "^2.20.1",
"qs": "^6.5.1",
"source-map-support": "^0.5.0",
"vue": "^2.5.13",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.13",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.24.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"bootstrap": "^3.3.7",
"bootstrap-sass": "^3.3.7",
"browser-sync": "^2.23.2",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"core-js": "^2.5.3",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"easy-pie-chart": "^2.1.7",
"eslint": "^4.14.0",
"eslint-config-semistandard": "^12.0.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"exports-loader": "^0.6.4",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"glob": "^7.1.1",
"html-loader": "^0.5.1",
"imports-loader": "^0.7.1",
"jquery": "^3.2.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"mocha": "^4.1.0",
"node-sass": "^4.7.2",
"null-loader": "^0.1.1",
"opn": "^5.1.0",
"postcss-loader": "^2.0.9",
"sass-loader": "^6.0.3",
"script-loader": "^0.7.2",
"standard": "^10.0.2",
"style-loader": "^0.19.1",
"toastr": "^2.1.4",
"vue-loader": "^13.6.2",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-middleware": "^2.0.3",
"webpack-hot-middleware": "^2.21.0",
"webpack-sources": "^1.1.0"
}
}