-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "@mattrax/monorepo",
"private": true,
"scripts": {
"dev": "pnpm --filter @mattrax/web dev",
"web": "pnpm --filter @mattrax/web --",
"landing": "pnpm --filter @mattrax/landing --",
"api": "pnpm --filter @mattrax/api --",
"email": "pnpm --filter @mattrax/email --",
"ingest": "pnpm --filter @mattrax/ingest --",
"db:push": "DRIZZLE=1 drizzle-kit push",
"db:studio": "DRIZZLE=1 drizzle-kit studio",
"sst": "sst",
"fix": "biome lint --write && biome format --write && biome check --write",
"format": "biome format --write",
"lint": "biome lint .",
"typecheck": "tsc -b",
"prepare": "husky"
},
"engines": {
"node": ">=20.17",
"pnpm": "^9"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@solidjs/start": "1.0.9",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.26.2",
"pg": "^8.13.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"husky": "^9.1.6",
"nx": "20.0.3",
"sst": "3.1.49",
"wrangler": "^3.81.0"
},
"pnpm": {
"patchedDependencies": {
"@solidjs/start": "patches/@solidjs__start.patch"
}
}
}