This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"name": "stomper",
"private": true,
"version": "1.1.27",
"main": "stomper.ts",
"repository": "https://github.com/maevsi/stomper.git",
"author": "Jonas Thelemann <e-mail+maevsi/stomper@jonas-thelemann.de>",
"license": "TODO",
"type": "module",
"engines": {
"node": "22"
},
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "./scripts/mjml.sh",
"dev": "sh parallel_commands 'nodemon ./src/stomper.ts' 'find ./src/email-templates/ -maxdepth 1 -type f -name ''*.mjml'' -print0 | xargs -0 mjml -o ./src/email-templates/ -w'",
"lint": "pnpm lint:js && pnpm lint:types",
"lint:js": "eslint --cache",
"lint:types": "tsc --noEmit",
"lint:fix": "pnpm run lint:js --fix",
"prepare": "husky",
"start": "node --experimental-strip-types ./src/stomper.ts",
"test": "vitest"
},
"dependencies": {
"@stomp/stompjs": "7.0.0",
"camelcase-keys": "9.1.3",
"handlebars": "4.7.8",
"html-to-text": "9.0.5",
"i18next": "23.16.0",
"i18next-fs-backend": "2.3.2",
"moment-timezone": "0.5.46",
"nodemailer": "6.9.15",
"pg": "8.13.0",
"ws": "8.18.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/eslint__js": "8.42.3",
"@types/html-to-text": "9.0.4",
"@types/i18next-fs-backend": "1.1.5",
"@types/node": "22.7.5",
"@types/nodemailer": "6.4.16",
"@types/pg": "8.11.10",
"@types/ws": "8.5.12",
"@vitest/eslint-plugin": "1.1.7",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.11.0",
"husky": "9.1.6",
"mjml": "4.15.3",
"nodemon": "3.1.7",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.9.0",
"vitest": "2.1.3"
},
"pnpm": {
"overrides": {
"dom-serializer": "2.0.0"
}
}
}