-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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": "hazy",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"build": "tsc",
"type-check": "tsc --noEmit",
"start": "node dist/index.js"
},
"type": "module",
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"better-sqlite3": "^11.5.0",
"countries-list": "^3.1.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-session": "^1.18.1",
"libphonenumber-js": "^1.11.14",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.8",
"nodemailer": "^6.9.16",
"qreator": "^9.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.9.0",
"@types/nodemailer": "^6.4.16",
"nodemon": "^3.1.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}