-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "ppij-shop",
"version": "0.1.0",
"private": true,
"scripts": {
"db:logs": "powershell -ExecutionPolicy Bypass -File scripts/postgres-logs.ps1",
"dbmate": "node scripts/run-dbmate.js",
"db:new": "node scripts/run-dbmate.js new",
"db:rollback": "node scripts/run-dbmate.js rollback",
"db:start": "powershell -ExecutionPolicy Bypass -File scripts/start-postgres.ps1",
"db:status": "node scripts/run-dbmate.js status",
"db:stop": "powershell -ExecutionPolicy Bypass -File scripts/stop-postgres.ps1",
"db:up": "node scripts/run-dbmate.js up",
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@clerk/nextjs": "^7.3.5",
"@react-email/components": "^1.0.12",
"next": "^16.2.6",
"pg": "^8.21.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-easy-crop": "^6.0.2",
"react-email": "^6.5.0",
"resend": "^6.12.4",
"server-only": "^0.0.1"
},
"devDependencies": {
"@react-email/ui": "^6.5.0",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.4.2",
"eslint": "^8",
"eslint-config-next": "^15.5.18",
"typescript": "^5"
}
}