forked from AyushAgrawal25/E-Commerce_Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 965 Bytes
/
package.json
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
{
"name": "e-commerce_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "env-cmd -f ./.env ts-node-dev --respawn --transpile-only src/app.ts",
"dockerDev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.0",
"env-cmd": "^10.1.0",
"prisma": "^3.11.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"@types/mongodb": "^4.0.7",
"@types/uuid": "^8.3.4",
"cors": "^2.8.5",
"express": "^4.17.2",
"firebase-admin": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"zod": "^3.11.6"
}
}