-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.15 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "notification-service",
"version": "1.3.0",
"description": "notification service for ansopedia",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"email": "email dev --dir src/emails",
"email:build": "email export --dir src/emails",
"lint": "eslint src .",
"lint:fix": "eslint --fix .",
"pretest": "pnpm build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prod": "set NODE_ENV=production&& pnpm build && pnpm start",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest",
"prepare": "husky"
},
"keywords": [
"notification service",
"ansopedia"
],
"author": "sanjay kumar sah",
"license": "ISC",
"dependencies": {
"@react-email/components": "^0.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.6.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"nodemailer": "^7.0.3",
"pino": "^9.7.0",
"react": "^19.1.0",
"react-email": "4.0.17",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.1.8",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jest": "^30.0.3",
"lint-staged": "^16.1.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md}": [
"prettier --write .",
"eslint --fix ."
]
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}