-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 897 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 897 Bytes
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
{
"name": "superapps-rt-web",
"version": "1.0.0",
"description": "SuperApps RT Web Application",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm start",
"client": "cd client && npm start",
"install-all": "npm install && cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"prisma:generate": "prisma generate --schema ./prisma/schema.prisma"
},
"keywords": [
"react",
"express",
"fullstack"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "6.7.0",
"concurrently": "^9.1.2",
"pg": "^8.15.6",
"prisma": "6.7.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"electron": "^36.2.0",
"electron-builder": "^26.0.12",
"supabase": "^2.22.12"
}
}