-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "repack",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "is-in-ci || husky",
"build": "turbo run build",
"dev": "turbo watch build",
"lint": "biome check --write",
"lint:ci": "biome check",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"release": "pnpm build && pnpm lint && pnpm test && pnpm changeset publish",
"pods": "turbo run pods",
"pods:update": "turbo run pods:update",
"website:start": "pnpm --filter website run start",
"website:build": "pnpm --filter website run export"
},
"devDependencies": {
"@babel/cli": "^7.25.2",
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.25.0",
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"husky": "^9.1.6",
"is-in-ci": "^1.0.0",
"turbo": "^2.8.16",
"typescript": "catalog:"
}
}