-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
50
51
{
"name": "unprice",
"private": true,
"engines": {
"node": "20.x"
},
"workspaces": ["apps/*", "packages/*"],
"engineStrict": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean --parallel",
"dev": "cross-env FORCE_COLOR=1 turbo run dev --parallel",
"with-infisical": "infisical run --env=preview --path=/ --recursive --",
"typecheck": "turbo run typecheck",
"wh": "pnpm dlx webhookthing@latest",
"knip": "knip --include files,dependencies",
"test": "cross-env SKIP_ENV_VALIDATION=1 NODE_ENV=test turbo run test",
"fmt:fix": "pnpm biome format . --write && pnpm biome check . --apply-unsafe",
"fmt": "pnpm biome format . && pnpm biome check .",
"validate": "pnpm typecheck && pnpm manypkg check && pnpm fmt:fix",
"manypkg:fix": "pnpm manypkg fix",
"commit": "cz",
"bump-versions": "pnpm changeset version && pnpm install",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/cli": "^2.27.7",
"@manypkg/cli": "^0.21.2",
"@turbo/gen": "^1.12.4",
"@types/node": "20.11.24",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.4",
"knip": "^5.17.4",
"lint-staged": "^15.2.9",
"turbo": "2.3.3",
"typescript": "^5.3.3"
},
"lint-staged": {
"*": ["pnpm validate"]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}