-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (52 loc) · 1.59 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "tasks",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev-t": "next dev --turbo",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dk:gen": "drizzle-kit generate",
"dk:push": "drizzle-kit push",
"dk:pull": "drizzle-kit introspect:mysql",
"dk:stdio": "drizzle-kit studio --verbose",
"dk:mig": "drizzle-kit migrate",
"dk:introspect": "drizzle-kit introspect"
},
"dependencies": {
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@tanstack/react-query": "^5.51.15",
"bcrypt": "^5.1.1",
"drizzle-orm": "^0.36.0",
"lucia": "^3.2.0",
"mysql2": "^3.11.0",
"next": "14.2.16",
"oslo": "^1.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.51.15",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.27.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
},
"license": "MIT"
}