-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.13 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.13 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "scdb",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rimraf .next .turbo node_modules/.cache",
"compile": "tsc",
"dev": "next dev --turbo",
"lint": "eslint . --fix",
"prettier:write": "npx prettier --write .",
"build:release": "NODE_OPTIONS='--max-old-space-size=4096' next build",
"run:release": "next start",
"db:pull": "PRISMA_PUSH_PULL=true npx dotenv -e .env.local -- prisma db pull",
"db:push": "PRISMA_PUSH_PULL=true npx dotenv -e .env.local -- prisma db push",
"db:backup": "npx dotenv -e .env.local -- node database/backup.mjs",
"updates:check": "npm-check-updates",
"updates:apply": "npm-check-updates -u && npm install",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-s3": "^3.1016.0",
"@aws-sdk/s3-presigned-post": "^3.1016.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.10",
"@hello-pangea/dnd": "^18.0.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/x-data-grid": "^8.28.0",
"@mui/x-date-pickers": "^8.27.2",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@scalar/nextjs-api-reference": "^0.10.4",
"dotenv": "^17.3.1",
"google-auth-library": "^10.6.2",
"luxon": "^3.7.2",
"next": "^16.2.1",
"next-auth": "^4.24.13",
"react": "^19.2.4",
"react-calendar-heatmap": "^1.10.0",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-use": "^17.6.0",
"sharp": "^0.34.5",
"slugify": "^1.6.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.1",
"@types/luxon": "^3.7.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-calendar-heatmap": "^1.9.0",
"@types/react-dom": "^19.2.3",
"baseline-browser-mapping": "^2.10.10",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"prettier": "^3.8.1",
"prisma": "^7.5.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}