-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "notification-service",
"version": "2.0.0",
"description": "Standalone email notification service for Calibre Tour",
"main": "dist/apps/api/src/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/apps/api/src/main.js",
"sart": "npm run start",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register apps/api/src/main.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.ts\"",
"generate-previews": "npx ts-node -P tsconfig.json -r tsconfig-paths/register scripts/generate-previews.ts",
"send-all-templates": "npx ts-node -P tsconfig.json -r tsconfig-paths/register scripts/send-all-templates.ts",
"check:templates": "npx ts-node -P tsconfig.json -r tsconfig-paths/register scripts/validate-templates.ts",
"test:prod": "npm run lint && npm run build && npm run check:templates && npm run generate-previews"
},
"keywords": [
"notification",
"email",
"smtp",
"express"
],
"author": "Calibre Tour",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"nodemailer": "^6.9.7",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"@types/nodemailer": "^6.4.14",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}