-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "prisma-review-website",
"version": "0.1.0",
"private": true,
"description": "A PRISMA systematic review workflow website prototype.",
"scripts": {
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"start": "next start",
"start:prod": "next start --hostname 127.0.0.1 --port 3000",
"build": "next build",
"check": "tsc --noEmit && npm run check:api-auth",
"check:api-auth": "node scripts/check-api-route-auth.mjs",
"backfill:pdfs:minio": "node scripts/backfill-pdfs-to-minio.mjs",
"migrate:users:postgres": "node scripts/migrate-users-to-postgres.mjs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1071.0",
"lucide-react": "1.16.0",
"next": "16.2.6",
"pg": "8.16.3",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"overrides": {
"postcss": "8.5.10"
},
"devDependencies": {
"@types/node": "latest",
"@types/pg": "8.15.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"typescript": "latest"
}
}