-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "gabfon",
"version": "0.1.0",
"author": {
"name": "Gabriel Fonseca",
"email": "hey@gabfon.com"
},
"type": "module",
"bin": {
"site": "dist/index.js"
},
"files": [
"dist/index.js"
],
"packageManager": "pnpm@9.12.3",
"overrides": {
"@octokit/request-error@>=1.0.0 <5.1.1": ">=5.1.1",
"@octokit/request@>=1.0.0 <8.4.1": ">=8.4.1",
"@octokit/plugin-paginate-rest@>=1.0.0 <9.2.2": ">=9.2.2",
"estree-util-value-to-estree@<3.3.3": ">=3.3.3",
"vite@>=6.2.0 <6.2.6": ">=6.2.6",
"vite@>=6.2.0 <=6.2.6": ">=6.2.7",
"vite@>=6.2.0 <6.2.5": ">=6.2.5",
"undici@<5.29.0": ">=5.29.0",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"next@>=15.3.0 <15.3.3": ">=15.3.3",
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"tmp@<=0.2.3": ">=0.2.4",
"next@>=15.0.0 <=15.4.4": ">=15.4.5",
"next@>=15.0.0-canary.0 <15.4.7": ">=15.4.7"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test -- --run",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"analyze": "turbo analyze",
"typecheck": "turbo typecheck",
"lint": "ultracite check",
"format": "ultracite fix",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"clean": "git clean -xdf node_modules",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"security": "snyk test --severity-threshold=high --file=package.json",
"security:all": "tsx scripts/security-scan.ts --all-projects",
"security:detailed": "tsx scripts/security-scan.ts --verbose",
"security:scan": "tsx scripts/index.ts security"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "2.2.4",
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@gabfon/typescript-config": "workspace:*",
"@octokit/plugin-paginate-rest": "13.1.1",
"@octokit/request": "10.0.3",
"@octokit/request-error": "7.0.0",
"@turbo/gen": "^2.5.6",
"@types/node": "^24.5.0",
"@vitejs/plugin-react": "^5.0.2",
"estree-util-value-to-estree": "3.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"ultracite": "^5.3.4",
"vite": "7.1.5"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"ultracite lint",
"ultracite format"
]
}
}