-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 867 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
{
"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": "env-cmd -f ./.env node ./dist/app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"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",
"cors": "^2.8.5",
"express": "^4.17.2",
"firebase-admin": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"zod": "^3.11.6"
}
}