-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 871 Bytes
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
{
"name": "eggisatria-ecosystem",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"db:generate": "pnpm --filter @ecosystem/database db:generate",
"db:push": "pnpm --filter @ecosystem/database db:push",
"db:studio": "pnpm --filter @ecosystem/database db:studio",
"prepare": "husky install",
"postinstall": "pnpm db:generate"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"turbo": "^2.3.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.1.0",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"prettier --write"
]
}
}