forked from nuxt/vercel-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.4 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.4 KB
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
{
"name": "@nuxtjs/vercel-builder",
"version": "0.17.12",
"license": "MIT",
"repository": "nuxt/vercel-builder",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .vue,.js,.ts src examples test",
"test": "yarn build && jest test",
"refresh": "run-s refresh:*",
"refresh:fixture": "cd test/fixture/www && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:fixture-ts": "cd test/fixture-ts/www && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:fixture-generated": "cd test/fixture-generated/www && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:example-basic": "cd examples/basic && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:example-side-by-side-admin": "cd examples/side-by-side/admin && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"refresh:example-side-by-side-app": "cd examples/side-by-side/app && yarn upgrade && rm yarn.lock && yarn && rm -rf node_modules",
"prepare": "yarn build",
"release": "standard-version && git push --follow-tags"
},
"dependencies": {
"@vercel/node-bridge": "1.3.1",
"consola": "2.15.0",
"esm": "3.2.25",
"execa": "^4.0.3",
"fs-extra": "9.0.1",
"replace-in-file": "^6.1.0",
"resolve-from": "^5.0.0",
"semver": "7.3.2"
},
"devDependencies": {
"@nuxt/types": "^2.14.6",
"@nuxtjs/eslint-config": "^3.1.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/aws-lambda": "^8.10.62",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/node": "^14.11.2",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@vercel/build-utils": "2.5.3",
"@vercel/frameworks": "0.1.1",
"@vercel/routing-utils": "1.8.4",
"codecov": "^3.7.2",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "26.4.2",
"npm-run-all": "^4.1.5",
"nuxt": "2.14.6",
"release-it": "^14.0.3",
"standard-version": "^9.0.0",
"typescript": "^4.0.3"
},
"resolutions": {
"minimist": ">=1.2.5"
}
}