forked from brophdawg11/vue-ssr-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "vue-ssr-build",
"version": "8.0.2",
"description": "Vue.js SSR Build Helper",
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=14.15.4",
"npm": ">=6.14.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbn/vue-ssr-build.git"
},
"scripts": {
"bump": "npm --no-git-tag-version version minor",
"bump:patch": "npm --no-git-tag-version version patch",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"chokidar": "3.5.2",
"fstream": "1.0.12",
"lodash": "4.17.21",
"lru-cache": "6.0.0",
"memory-fs": "0.5.0",
"webpack": "5.65.0",
"webpack-dev-middleware": "5.3.0",
"webpack-hot-middleware": "2.25.2",
"webpack-hot-server-middleware": "0.6.1"
},
"peerDependencies": {
"vue-server-renderer": "2.7.14"
},
"devDependencies": {
"@babel/eslint-parser": "7.13.4",
"@babel/preset-env": "7.16.4",
"babel-jest": "27.4.2",
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.8",
"jest": "27.4.3"
}
}