-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "vercel-storage",
"version": "0.0.1",
"description": "The monorepo for everything Storage at Vercel",
"homepage": "https://vercel.com",
"repository": {
"type": "git",
"url": "https://github.com/vercel/storage.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "turbo build",
"integration-test": "turbo integration-test --output-logs=new-only",
"check": "turbo check",
"prepare": "husky",
"check:fix": "biome check --write .",
"publint": "turbo publint",
"release": "pnpm build && changeset publish",
"run-integration": "pnpm -F vercel-storage-integration-test-suite dev",
"test": "turbo test",
"type-check": "turbo type-check",
"version-packages": "changeset version && pnpm i --no-frozen-lockfile && git add ."
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/cli": "2.30.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.3.3",
"publint": "0.3.18",
"ts-jest": "29.4.6",
"turbo": "2.8.15",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=18"
}
}