-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
49 lines (49 loc) · 1.37 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
{
"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",
"lint": "turbo lint -- --max-warnings=0",
"prepare": "husky",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --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": {
"*": [
"prettier --ignore-unknown --write"
]
},
"prettier": "@vercel/style-guide/prettier",
"devDependencies": {
"@changesets/cli": "2.27.9",
"@vercel/style-guide": "5.2.0",
"eslint": "8.56.0",
"eslint-config-custom": "workspace:*",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"publint": "0.2.12",
"ts-jest": "29.2.5",
"turbo": "1.12.4",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}