forked from nuxt/vercel-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
{
"name": "@nuxtjs/vercel-builder",
"version": "0.21.3",
"repository": "nuxt/vercel-builder",
"license": "MIT",
"exports": {
".": "./lib/index.js",
"./launcher": "./lib/launcher.js"
},
"main": "lib/index.js",
"files": [
"lib",
".yarnclean"
],
"scripts": {
"build": "siroc build",
"lint": "eslint --ext .vue,.js,.ts src examples test",
"prepare": "yarn build",
"refresh": "run-s refresh:*",
"refresh:example-basic": "cd examples/basic && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:example-side-by-side-admin": "cd examples/side-by-side/admin && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:example-side-by-side-app": "cd examples/side-by-side/app && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:fixture": "cd test/fixture/www && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:fixture-generated": "cd test/fixture-generated/www && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:fixture-ts": "cd test/fixture-ts/www && rm yarn.lock && yarn && rm -rf node_modules",
"release": "release-it",
"test": "jest test"
},
"resolutions": {
"minimist": ">=1.2.5"
},
"dependencies": {
"@nuxtjs/web-vitals": "^0.1.4",
"@vercel/build-utils": "2.11.1",
"@vercel/node-bridge": "1.3.3",
"consola": "2.15.3",
"execa": "^5.1.1",
"fs-extra": "9.1.0",
"jiti": "^1.10.1",
"rc9": "^1.2.0",
"replace-in-file": "^6.2.0",
"resolve-from": "^5.0.0",
"semver": "7.3.5",
"ufo": "^0.7.7"
},
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@release-it/conventional-changelog": "^3.0.1",
"@types/aws-lambda": "^8.10.81",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/node": "^14.17.6",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@vercel/routing-utils": "1.11.2",
"codecov": "^3.8.3",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.14.0",
"jest": "27.0.6",
"npm-run-all": "^4.1.5",
"nuxt": "2.15.7",
"release-it": "^14.10.1",
"siroc": "^0.14.0"
}
}