-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "@reifiedbeans/comida",
"private": true,
"engines": {
"node": "20.x",
"pnpm": ">=8"
},
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"check": "tsc && prettier --cache --check . && eslint --cache --max-warnings=0 .",
"fix": "prettier --cache --write . && eslint --cache --max-warnings=0 --fix .",
"prebuild": "pnpm check",
"env:pull": "vercel env pull .env.development.local"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@vercel/postgres": "^0.10.0",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.35.3",
"lodash": "^4.17.21",
"next": "^15.1.2",
"next-auth": "5.0.0-beta.25",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.26.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.2",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}