-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 896 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 896 Bytes
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
{
"name": "walletapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node index.ts",
"dev": "nodemon index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"bcrypt": "6.0.0",
"decimal.js": "10.6.0",
"dotenv": "17.2.3",
"express": "5.2.1",
"jsonwebtoken": "9.0.3",
"ts-jest": "^29.4.6",
"zod": "4.3.5"
},
"devDependencies": {
"@types/bcrypt": "6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.3",
"jest": "^30.2.0",
"prisma": "^7.2.0",
"supertest": "^7.2.2",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}