-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"private": true,
"type": "module",
"scripts": {
"postinstall": "prisma generate",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "rimraf dist/server && tsc -p tsconfig.server.json && mkdir -p dist/server/generated && cp -r src/server/generated/prisma dist/server/generated/prisma",
"start": "node --env-file=.env dist/server/index.js",
"dev": "npm run build && npm start"
},
"dependencies": {
"@noble/ed25519": "^3.0.0",
"@prisma/client": "^6.16.2",
"express": "^5.1.0",
"multer": "^2.0.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"prisma": "^6.16.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.6"
}
}