-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 887 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 887 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
39
{
"name": "fastifyts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "nodemon",
"test": "mocha",
"build": "tsc --project ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prisma": "^4.16.2",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/swagger": "^8.6.0",
"@prisma/client": "^4.16.2",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"fastify": "^4.19.0",
"fastify-guard": "^2.0.0",
"jsonwebtoken": "^9.0.1",
"moment-timezone": "^0.5.43",
"uuid": "^9.0.0"
}
}