-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "@chelsea-apps/notification",
"version": "2.3.6",
"description": "Notifications libraries for Chelsea Apps projects, providing email, SMS and push notification support",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/main.js\"",
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"release": "standard-version --no-verify"
},
"author": "Chelsea Apps",
"license": "ISC",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.16.0",
"@nestjsplus/dyn-schematics": "^1.0.12",
"@parse/node-apn": "^4.1.1",
"ical-generator": "^2.2.0",
"nodemailer": "^6.6.1",
"standard-version": "^9.3.0"
},
"devDependencies": {
"@types/bull": "^3.15.1",
"@types/faker": "^5.5.5",
"@types/jest": "^26.0.23",
"@types/luxon": "^1.27.0",
"@types/node": "^15.12.2",
"@types/nodemailer": "^6.4.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"dayjs": "^1.10.5",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"moment": "^2.29.4",
"moment-timezone": "^0.5.33",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rrule": "^2.6.8",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@nestjs/bull": "^0.5.2",
"@nestjs/common": "^8.4.0",
"@nestjs/testing": "^8.4.0",
"bull": "^4.7.0",
"faker": "^5.5.3",
"rxjs": "^7.4.0",
"winston": "^3.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"npm run lint",
"npm test -- --findRelatedTests"
]
}
}