-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.43 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
44
45
46
47
48
{
"name": "tryvia-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"setup": "node ./scripts/check_env.js && pnpm run db:push",
"build": "pnpm run setup && next build",
"start": "next start",
"lint": "next lint && eslint . && prettier . --check",
"lint:fix": "next lint --fix && eslint . --fix && prettier . --write",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite"
},
"dependencies": {
"@libsql/client": "^0.6.0",
"@t3-oss/env-nextjs": "^0.9.2",
"drizzle-orm": "^0.30.7",
"jiti": "^1.21.0",
"jose": "^5.2.4",
"nanoid": "^5.0.7",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.3.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f",
"license": "MIT"
}