-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "product-feedback-api",
"version": "1.0.0",
"description": "backend API for product feedback",
"main": "index.js",
"prisma": {
"seed": "ts-node src/prisma/seed.ts"
},
"scripts": {
"build": "npm i && npx prisma generate --schema=./src/prisma/schema.prisma && npx prisma migrate dev --name init --schema ./src/prisma/schema.prisma && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -w\" \" nodemon dist/index.js\"",
"pretest": "npm run build",
"test": "jest --detectOpenHandles"
},
"author": "arunpariyar",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.10.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.24",
"@types/supertest": "^6.0.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"prisma": "^5.10.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}