-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
49
50
{
"name": "contact-api",
"version": "1.0.0",
"description": "RESTful API for contacts CRUD operations",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q src/main.ts\"",
"start": "node dist/main.js",
"build": "tsc",
"test": "jest --runInBand",
"migrate": "prisma migrate deploy",
"start:migrate:prod": "prisma migrate deploy && node dist/main.js"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"author": "n9mi",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prisma": "^5.19.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@types/jsonwebtoken": "^9.0.6",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"zod": "^3.23.8"
}
}