-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
46
47
48
49
50
51
52
53
{
"name": "first",
"version": "1.0.0",
"description": "first nodejs project",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch --clear-screen=false src/app.ts",
"dew": "nodemon ./src/app.ts",
"start": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "prisma generate"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.194",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.1",
"@types/nodemailer": "^6.4.7",
"@types/pug": "^2.0.6",
"@types/uuid": "^9.0.1",
"morgan": "^1.10.0",
"prisma": "^4.13.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.13.0",
"argon2": "^0.30.3",
"axios": "^1.3.6",
"bullmq": "^3.12.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nodemailer": "^6.9.1",
"oauth4webapi": "^2.2.4",
"pug": "^3.0.2",
"redis": "^4.6.5",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}