-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 858 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 858 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
{
"name": "gmind",
"version": "1.0.0",
"description": "A dockerized nodeJS AI power by Google AI studio API",
"main": "./src/server.js",
"scripts": {
"setup": "npm install express bcryptjs jsonwebtoken prisma @prisma/client pg",
"setupPrismaORM" : "npx prisma init",
"dev": "node --watch --env-file=.env --experimental-strip-types --experimental-sqlite ./src/server.js",
"start": "node --env-file=.env --experimental-strip-types --experimental-sqlite ./src/server.js",
"generateDB": "npx prisma generate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"@prisma/client": "^6.14.0",
"bcryptjs": "^3.0.2",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"prisma": "^6.14.0"
}
}