-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "devprepro",
"version": "1.0.0",
"description": "dev platform",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon",
"dev1": "ts-node-dev --respawn --transpile-only --exit-child src/app.ts",
"build": "tsc -p tsconfig.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"author": "duby",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^9.2.0",
"@fastify/cors": "^8.4.1",
"@fastify/error": "^3.4.1",
"@fastify/mongodb": "^8.0.0",
"@fastify/swagger": "^8.13.0",
"@fastify/swagger-ui": "^2.0.1",
"@sendgrid/mail": "^7.7.0",
"ajv": "^8.12.0",
"bcrypt": "^5.1.1",
"chalk": "^5.3.0",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fastify-jwt": "^4.2.0",
"fastify-plugin": "^4.5.1",
"fastify-socket.io": "^5.0.0",
"fastify-zod": "^1.4.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.1",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.7",
"socket.io": "^4.7.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"validator": "^13.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.201",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.14",
"@types/validator": "^13.11.7",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
}