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.39 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": "@fabioni/vercel-builder-fix",
"version": "1.0.10",
"repository": "fabioni/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.8",
"@vercel/build-utils": "2.11.0",
"@vercel/node-bridge": "2.1.0",
"consola": "2.15.3",
"execa": "^5.1.1",
"fs-extra": "9.1.0",
"jiti": "^1.12.9",
"rc9": "^1.2.0",
"replace-in-file": "^6.3.2",
"resolve-from": "^5.0.0",
"semver": "7.3.5",
"ufo": "^0.7.9"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config": "^8.0.0",
"@release-it/conventional-changelog": "^4.1.0",
"@types/aws-lambda": "^8.10.91",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "^14.17.18",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vercel/routing-utils": "1.11.3",
"codecov": "^3.8.3",
"eslint": "^8.7.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.3.0",
"jest": "27.4.7",
"npm-run-all": "^4.1.5",
"nuxt": "2.15.8",
"release-it": "^14.12.3",
"siroc": "^0.16.0"
}
}