-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
54
55
56
{
"name": "earn-emails",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "tsx watch src",
"build": "prisma generate && npx tsc",
"postinstall": "prisma generate",
"check-types": "tsc --noEmit --pretty",
"lint": "eslint",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/eslint": "8.56.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.11.24",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prisma": "^5.15.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"@react-email/render": "^1.0.2",
"@types/uuid": "^10.0.0",
"bullmq": "^5.30.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"husky": "^9.1.7",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"react": "^18.2.0",
"resend": "^4.0.1"
}
}