-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "Tradeazy",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"test": "",
"build": "tsc -p tsconfig.json",
"start": "node -r dotenv/config ./build/index.js",
"dev": "ts-node-dev --env-file=.env ./src/index.ts | pino-pretty --colorize"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@elasticemail/elasticemail-client-ts-axios": "^4.0.22",
"@fastify/cors": "^8.4.1",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^7.2.3",
"@prisma/client": "^5.6.0",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"flutterwave-node-v3": "^1.1.6",
"jsonwebtoken": "^9.0.2",
"pino": "^8.16.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.9.2",
"@types/pino": "^7.0.5",
"prisma": "^5.6.0",
"ts-node-dev": "^2.0.0"
}
}