-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 846 Bytes
/
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
{
"name": "fake-bank",
"version": "1.0.0",
"description": "authentication express server",
"main": "index.ts",
"scripts": {
"start": "nodemon",
"test": "mocha"
},
"author": "Tristan Hilbert (aka TFlexSoom)",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/mock-req-res": "^1.1.6",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"mocha": "^10.4.0",
"mock-req-res": "^1.2.1",
"nodemon": "^3.1.0",
"prisma": "^5.12.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jose": "^5.2.4",
"pug": "^3.0.2",
"tsx": "^4.7.2",
"uuid": "^9.0.1"
}
}