-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "backend-devathon-ed4",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/src/main.js",
"dev": "tsnd --respawn --transpile-only --exit-child src/main.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/jwt": "^6.7.1",
"@fastify/mongodb": "^7.0.0",
"@fastify/multipart": "^7.6.0",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.8.0",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cloudinary": "^1.37.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.8.0",
"fastify": "^4.17.0",
"fastify-multipart": "^5.4.0",
"fastify-zod": "^1.3.2",
"geolib": "^3.3.4",
"mongoose": "^7.2.1",
"nodemailer": "^6.9.3",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.20.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"i": "^0.3.7",
"npm": "^9.6.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}