-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 950 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 950 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
35
36
37
38
39
{
"name": "fullstack-todos",
"version": "0.1.0",
"engines": {
"pnpm": "9.2.0"
},
"scripts": {
"db:studio": "turbo db:studio",
"db:migrate-dev": "turbo db:migrate-dev",
"db:generate-types": "turbo db:generate-types",
"app:next-dev": "turbo run next-todo#dev",
"app:next-lint": "turbo run next-todo#lint",
"app:svelte-dev": "turbo run sveltekit-todo#dev"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.12.11",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.2.0",
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.3.0",
"@prisma/client": "5.13.0",
"bcrypt": "^5.1.1",
"eslint": "^9.4.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"dotenv": "^16.4.5",
"jose": "^5.3.0",
"zod": "^3.23.8"
},
"workspaces": [
"apps/*"
]
}