-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 760 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 760 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
34
{
"name": "text",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "prettier --check .",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"seed": "ts-node prisma/seed.ts",
"prepare": "husky && husky install"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.8.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"prisma": "^5.17.0",
"turbo": "^2.0.6",
"typescript": "^5.4.5",
"typescript-eslint": "^7.16.1"
},
"engines": {
"node": ">=18"
},
"husky": {},
"packageManager": "npm@10.7.0",
"workspaces": [
"apps/*",
"packages/*"
]
}