forked from callstack/repack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "repack",
"private": true,
"packageManager": "pnpm@10.34.5",
"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",
"version-packages": "pnpm changeset version && pnpm lint",
"version-packages:canary": "pnpm changeset version --snapshot canary && pnpm lint",
"release": "pnpm changeset publish",
"release:canary": "pnpm changeset publish --tag canary --no-git-tag",
"pods": "turbo run pods",
"pods:update": "turbo run pods:update",
"website:start": "pnpm --filter website run dev",
"website:build": "pnpm --filter website run build"
},
"devDependencies": {
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/plugin-syntax-flow": "^7.29.7",
"@babel/plugin-transform-react-jsx": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@babel/runtime": "^7.29.7",
"@biomejs/biome": "^2.5.6",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"husky": "^9.1.6",
"is-in-ci": "^1.0.0",
"turbo": "^2.10.6",
"typescript": "catalog:"
}
}