forked from vercel/vercel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.75 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
68
69
70
71
72
73
74
75
76
77
{
"name": "vercel-monorepo",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"packageManager": "pnpm@8.3.1",
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@changesets/cli": "2.27.8",
"@svitejs/changesets-changelog-github-compact": "1.1.0",
"@types/node": "20.11.0",
"@vercel/build-utils": "*",
"@vercel/style-guide": "4.0.2",
"async-retry": "1.2.3",
"buffer-replace": "1.0.0",
"create-svelte": "2.0.1",
"dot": "1.1.3",
"esbuild": "0.19.2",
"execa": "3.2.0",
"fs-extra": "11.1.0",
"glob": "10.2.3",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest": "29.5.0",
"json5": "2.2.3",
"lint-staged": "9.2.5",
"node-fetch": "2.6.7",
"npm-package-arg": "6.1.0",
"prettier": "3.3.3",
"source-map-support": "0.5.12",
"syncpack": "13.0.4",
"tmp-promise": "1.0.3",
"ts-eager": "2.0.2",
"ts-jest": "29.1.5",
"turbo": "2.5.0",
"typescript": "4.9.5",
"vite": "5.1.8",
"vitest": "2.0.3"
},
"scripts": {
"build": "node utils/gen.js && turbo --no-update-notifier run build",
"vercel-build": "pnpm build && pnpm run pack && cd api && node -r ts-eager/register ./_lib/script/build.ts",
"pre-commit": "lint-staged",
"test": "jest --rootDir=\"test\" --testPathPattern=\"\\.test.js\"",
"test-unit": "pnpm test && node utils/gen.js && turbo --no-update-notifier run test-unit",
"test-cli": "node utils/gen.js && turbo --no-update-notifier run test-cli",
"test-e2e": "node utils/gen.js && turbo --no-update-notifier run test-e2e",
"test-dev": "node utils/gen.js && turbo --no-update-notifier run test-dev",
"lint": "biome lint api internals packages test utils",
"format": "biome format --write api internals packages test utils",
"format:check": "biome format api internals packages test utils",
"prepare": "husky install",
"pack": "cd utils && node -r ts-eager/register ./pack.ts",
"ci:version": "changeset version && node utils/sync-python-version.js && uv lock && pnpm install --no-frozen-lockfile",
"ci:publish": "node utils/publish-runtimes.mjs && pnpm publish -r && node utils/update-canary-tags.mjs && changeset tag",
"type-check": "turbo type-check --concurrency=12 --output-logs=errors-only --summarize --continue"
},
"lint-staged": {
"./{*,{api,internals,packages,test,utils}/**/*}.{js,ts}": [
"biome format --write --no-errors-on-unmatched",
"biome lint --no-errors-on-unmatched",
"git add"
],
"./{*,{api,internals,packages,test,utils}/**/*}.json": [
"biome format --write --no-errors-on-unmatched",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "avoid"
},
"pnpm": {
"neverBuiltDependencies": []
}
}