-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "express-resful-api-typescript-example",
"version": "1.0.0",
"description": "Example express resful api using typescript",
"license": "ISC",
"author": "Ryoogen Media by Muhammad Bintang",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/main.js"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"dependencies": {
"@prisma/client": "^6.1.0",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/supertest": "^6.0.2",
"babel-jest": "^29.7.0",
"express": "^4.21.2",
"jest": "^29.7.0",
"prisma": "^6.1.0",
"supertest": "^7.0.0",
"typescript": "^5.7.2"
}
}