-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
73 lines (73 loc) · 2.4 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.25.0",
"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 package-lock.json && npm install && 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": {
"@types/mime": "^3.0.4"
},
"dependencies": {
"@nuxtjs/web-vitals": "^0.2.7",
"@vercel/node-bridge": "4.0.1",
"consola": "2.15.3",
"execa": "^5.1.1",
"fs-extra": "11.2.0",
"jiti": "^1.21.0",
"rc9": "^2.1.2",
"replace-in-file": "^6.3.5",
"resolve-from": "^5.0.0",
"semver": "7.6.0",
"ufo": "^1.5.3"
},
"devDependencies": {
"@nuxt/types": "^2.17.3",
"@nuxtjs/eslint-config": "^12.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/aws-lambda": "^8.10.137",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^18.19.31",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/build-utils": "7.11.0",
"@vercel/routing-utils": "3.1.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.24.1",
"jest": "29.7.0",
"npm-run-all2": "^5.0.2",
"nuxt": "2.17.3",
"release-it": "^15.11.0",
"siroc": "^0.16.0"
}
}