-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.4 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "structa",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"packages/web",
"packages/app-example",
"packages/backend",
"packages/core",
"packages/functions",
"packages/notifications"
],
"scripts": {
"prepare": "husky",
"test": "vitest run --exclude '**/packages/solidtype/**'",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:related": "vitest related --run",
"test:core": "cd packages/core && npm run test",
"test:app": "cd packages/app-example && npm run test",
"test:web": "cd packages/web && npm run test",
"typecheck": "npm run typecheck:core && npm run typecheck:backend && npm run typecheck:web",
"typecheck:core": "cd packages/core && npm run typecheck",
"typecheck:backend": "cd packages/backend && npm run typecheck",
"typecheck:app": "cd packages/app-example && npm run typecheck",
"typecheck:web": "cd packages/web && npm run typecheck",
"lint": "npm run lint:web; npm run lint:app || true; npm run lint:core || true; npm run lint:backend || true",
"lint:fix": "npm run lint:web:fix; npm run lint:app:fix || true; npm run lint:core:fix || true; npm run lint:backend:fix || true",
"format": "npm run format:web; npm run format:app || true; npm run format:core || true; npm run format:backend || true",
"format:check": "npm run format:web:check; npm run format:app:check || true; npm run format:core:check || true; npm run format:backend:check || true",
"check": "npm run check:web; npm run check:app || true; npm run check:core || true; npm run check:backend || true",
"check:fix": "npm run check:web:fix; npm run check:app:fix || true; npm run check:core:fix || true; npm run check:backend:fix || true",
"lint:web": "cd packages/web && npm run lint",
"lint:web:fix": "cd packages/web && npm run lint:fix",
"lint:app": "cd packages/app-example && npm run lint || true",
"lint:app:fix": "cd packages/app-example && npm run lint:fix || true",
"lint:core": "cd packages/core && npm run lint || true",
"lint:core:fix": "cd packages/core && npm run lint:fix || true",
"lint:backend": "cd packages/backend && npm run lint || true",
"lint:backend:fix": "cd packages/backend && npm run lint:fix || true",
"format:web": "cd packages/web && npm run format",
"format:web:check": "cd packages/web && npm run format:check",
"format:app": "cd packages/app-example && npm run format || true",
"format:app:check": "cd packages/app-example && npm run format:check || true",
"format:core": "cd packages/core && npm run format || true",
"format:core:check": "cd packages/core && npm run format:check || true",
"format:backend": "cd packages/backend && npm run format || true",
"format:backend:check": "cd packages/backend && npm run format:check || true",
"check:web": "cd packages/web && npm run check",
"check:web:fix": "cd packages/web && npm run check:fix",
"check:app": "cd packages/app-example && npm run check || true",
"check:app:fix": "cd packages/app-example && npm run check:fix || true",
"check:core": "cd packages/core && npm run check || true",
"check:core:fix": "cd packages/core && npm run check:fix || true",
"check:backend": "cd packages/backend && npm run check || true",
"check:backend:fix": "cd packages/backend && npm run check:fix || true",
"dev:email": "npm run dev --workspace=@structa/notifications"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@playwright/test": "^1.57.0",
"@tanstack/devtools": "^0.7.0",
"@tsconfig/node22": "^22",
"@types/node": "^25.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"shadcn": "^3.8.5",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"wrangler": "^4.66.0"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"hast-util-to-string": "^3.0.1",
"hono": "^4.10.4",
"lucide-react": "^0.563.0",
"posthog-js": "^1.336.4",
"sst": "^3.17.38",
"stripe": "^18.1.1",
"unist-util-visit": "^5.1.0",
"zod": "^4.3.6"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0",
"@noble/ciphers": "^2.1.1"
},
"lint-staged": {
"packages/core/**/*.{ts,tsx,js,jsx}": [
"sh -c 'cd packages/core && npx biome check --write'"
],
"packages/backend/**/*.{ts,tsx,js,jsx}": [
"sh -c 'cd packages/backend && npx biome check --write'"
],
"packages/web/**/*.{ts,tsx,js,jsx}": [
"sh -c 'cd packages/web && npx biome check --write'"
],
"packages/**/*.{json,md}": [
"npx biome format --write"
]
}
}