-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "ifinho",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "npm run dev --workspaces",
"build": "npm run build --workspaces",
"check-types": "npm run check-types --workspaces --if-present",
"dev:native": "npm run dev --workspace native",
"dev:web": "npm run dev --workspace web",
"dev:server": "npm run dev --workspace server",
"dev:worker": "npm run dev --workspace worker",
"db:push": "npm run db:push --workspace @ifinho/db",
"db:studio": "npm run db:studio --workspace @ifinho/db",
"db:generate": "npm run db:generate --workspace @ifinho/db",
"db:migrate": "npm run db:migrate --workspace @ifinho/db",
"check": "biome check --write .",
"prepare": "husky"
},
"dependencies": {
"@ifinho/env": "*",
"dotenv": "^17.2.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@ifinho/config": "*",
"@types/node": "^22.13.14",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"typescript": "^5"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --files-ignore-unknown=true"
]
},
"packageManager": "npm@11.6.1"
}