-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 815 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 815 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
{
"name": "auth",
"version": "1.0.0",
"description": "Nothing to tell you",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "nodemon ./src/server/server.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"prisma": "^4.8.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@prisma/client": "^4.8.0",
"@types/cors": "^2.8.13",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^29.2.5",
"cors": "^2.8.5",
"http-status-codes": "^2.2.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"uuidv4": "^6.2.13",
"yup": "^0.32.11"
}
}