forked from Akryum/vue-cli-plugin-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "@akryum/vue-cli-plugin-ssr",
"version": "0.5.0",
"description": "Turn your app into an isomorphic SSR app!",
"author": "Guillaume Chau",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn run test",
"test": "yarn run lint",
"lint": "eslint .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-cli-plugin-ssr.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vue",
"vue-cli",
"ssr"
],
"homepage": "https://github.com/Akryum/vue-cli-plugin-ssr",
"bugs": {
"url": "https://github.com/Akryum/vue-cli-plugin-ssr/issues"
},
"main": "index.js",
"dependencies": {
"chalk": "^2.4.2",
"clipboardy": "^2.1.0",
"compression": "^1.7.4",
"cross-env": "^6.0.3",
"execa": "^3.2.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"hash-sum": "^2.0.0",
"loader-utils": "^1.2.3",
"lru-cache": "^5.1.1",
"memory-fs": "^0.5.0",
"portfinder": "^1.0.25",
"querystring": "^0.2.0",
"recast": "^0.18.5",
"rimraf": "^3.0.0",
"serve-favicon": "^2.5.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpackbar": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"vuepress": "^0.14.8"
},
"peerDependencies": {
"@vue/cli-service": ">=3.0.0",
"@vue/cli-shared-utils": ">=3.0.0",
"vue": "^2.6.0",
"vue-server-renderer": "^2.6.0",
"webpack": "^4.0.0"
}
}