-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.33 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@afetcan/email",
"private": false,
"type": "module",
"version": "0.0.7",
"description": "Email for afetcan.com",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "Apache",
"homepage": "https://github.com/afetcan/#readme",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/afetcan/email.git"
},
"bugs": {
"url": "https://github.com/afetcan/email/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=v18.10.0",
"pnpm": ">=7.26.3"
},
"scripts": {
"build": "tsup",
"dev": "tsup-node src/dev.ts --format esm --shims --target node18 --watch --sourcemap --onSuccess 'node --enable-source-maps dist/dev.js' | pino-pretty --translateTime HH:MM:ss TT --ignore pid,hostname",
"postbuild": "copyfiles -f \"node_modules/bullmq/dist/esm/commands/*.lua\" dist && copyfiles -f \"node_modules/bullmq/dist/esm/commands/includes/*.lua\" dist/includes",
"clean": "rimraf dist && rimraf node_modules",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
"release": "bumpp --commit --push --tag && pnpm publish"
},
"peerDependencies": {
"@abraham/reflection": "^0.12.0",
"graphql": "16.6.0"
},
"dependencies": {
"@sentry/node": "^7.40.0",
"@trpc/server": "^10.13.2",
"@whatwg-node/fetch": "^0.8.1",
"bullmq": "^3.9.0",
"dotenv": "^16.0.3",
"ioredis": "^5.3.1",
"mjml": "^4.13.0",
"nodemailer": "^6.9.1",
"p-timeout": "^6.1.1",
"sendmail": "^1.6.1",
"zod": "^3.20.6"
},
"devDependencies": {
"@afetcan/service-common": "0.0.4",
"@antfu/eslint-config": "^0.35.3",
"@types/mjml": "^4.7.0",
"@types/node": "^18.14.2",
"@types/nodemailer": "^6.4.7",
"@types/sendmail": "^1.4.4",
"bumpp": "^9.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.35.0",
"pino-pretty": "^9.4.0",
"tslib": "^2.5.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}