forked from vercel/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "vercel-sandbox",
"version": "0.0.0",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "2.29.4",
"@svitejs/changesets-changelog-github-compact": "0.1.1",
"husky": "3.0.4",
"lint-staged": "9.2.5",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"turbo": "2.5.3",
"typedoc": "0.28.4",
"typescript": "5.8.3"
},
"scripts": {
"clean": "turbo clean && rm -rf ./node_modules",
"build": "turbo run typecheck build",
"test": "turbo run test",
"version:prepare": "changeset version && turbo run version:bump && pnpm install --no-frozen-lockfile",
"release": "changeset publish"
},
"lint-staged": {
"./{*,{packages,.github}/**/*}.{js,ts}": [
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}