-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 KB
/
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
37
38
39
40
41
42
43
44
45
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"engines": {
"node": "17.2.0"
},
"scripts": {
"dev": "concurrently \"tsc -w\" \"nodemon dist/server.js\"",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/session": "^6.2.2",
"@sinclair/typebox": "^0.20.5",
"@types/bcrypt": "^5.0.0",
"@types/multer": "^1.4.7",
"@types/node-mailjet": "^3.3.7",
"bcrypt": "^5.0.1",
"cloudinary": "^1.27.1",
"dotenv": "^10.0.0",
"fastify": "^3.23.0",
"fastify-cookie": "^5.4.0",
"fastify-cors": "^6.0.2",
"fastify-multer": "^2.0.2",
"multer-storage-cloudinary": "^4.0.0",
"node-mailjet": "^3.3.4",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"pg-connection-string": "^2.5.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/nodemailer": "^6.4.4",
"@types/pg": "^8.6.1",
"concurrently": "^6.3.0",
"nodemon": "^2.0.14",
"typescript": "^4.4.4"
}
}