-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 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": "Turbo-Doc",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,yaml,yml}\"",
"types": "turbo run check-types",
"build": "turbo run build",
"check": "pnpm format && pnpm lint && pnpm types"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
},
"dependencies": {
"@prisma/client": "^7.0.1",
"@prisma/client-runtime-utils": "^7.2.0",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@eslint/js": "9",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^22.15.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-turbo": "^2.6.0",
"prettier": "^3.6.2",
"prisma": "^7.0.1",
"tailwindcss": "^4.1.17",
"turbo": "^2.6.1",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}