-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 874 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
{
"name": "InstaChatClone",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,json,css,html}": [
"prettier . --write"
]
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/node": "^20.12.7",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"prisma": "^5.12.1",
"ts-node": "^10.9.2",
"turbo": "latest",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}