-
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) · 965 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 965 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
34
35
36
37
38
{
"name": "shopper-test-api",
"version": "1.0.0",
"main": "dist/Server.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node -r tsconfig-paths/register dist/Server.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/Server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^22.5.1",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.4",
"prisma": "^5.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@google-cloud/vision": "^4.3.2",
"@google/generative-ai": "^0.17.1",
"@prisma/client": "^5.19.0",
"@types/express": "^4.17.21",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsyringe": "^4.8.0",
"uuid": "^10.0.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}