-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "repack",
"private": true,
"scripts": {
"prepare": "is-in-ci || husky",
"build": "nx run-many -t build",
"dev": "pnpm run build && nx watch --all -- pnpm run build",
"lint": "biome check --write",
"lint:ci": "biome check",
"typecheck": "nx run-many -t typecheck --exclude tests/metro-compat",
"test": "nx run-many -t test",
"release": "pnpm build && pnpm lint && pnpm test && pnpm changeset publish",
"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.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"husky": "^9.1.6",
"is-in-ci": "^1.0.0",
"nx": "19.7.3",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}