-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
{
"name": "project-typescript",
"version": "1.0.0",
"description": "Belajar RESTful API Membuat Contact Management",
"main": "index.js",
"scripts": {
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Shiin-79/Project-TypeScript.git"
},
"keywords": [
"TypeScript"
],
"author": "Shiin-79",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shiin-79/Project-TypeScript/issues"
},
"homepage": "https://github.com/Shiin-79/Project-TypeScript#readme",
"dependencies": {
"@prisma/client": "^5.20.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"express": "^4.21.0",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prisma": "^5.20.0",
"supertest": "^7.0.0",
"typescript": "^5.6.2"
}
}