-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 840 Bytes
/
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
{
"name": "prisma-gql",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"check": "prettier --check . && eslint --quiet .",
"prepare": "husky"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18.15.0"
},
"packageManager": "pnpm@8.0.0",
"lint-staged": {
"{packages,apps}/**/!(generated)/*.{js,ts,tsx}": [
"eslint --fix"
],
"{packages,apps}/**/!(generated)/*.{js,ts,tsx,graphql,yml,json}": [
"prettier --write"
]
}
}