-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "notification-service",
"version": "1.0.0",
"description": "notification service for ansopedia",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"email": "email dev --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.0.22",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"nodemailer": "^6.9.14",
"pino": "^9.3.2",
"react": "^18.3.1",
"react-email": "2.1.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md}": [
"prettier --write .",
"eslint --fix ."
]
}
}