-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "fantasynotify",
"version": "1.0.0",
"description": "Transaction notifications for Yahoo Fantasy Leagues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lentz/fantasynotify.git"
},
"author": "Jesse Lentz",
"license": "MIT",
"bugs": {
"url": "https://github.com/lentz/fantasynotify/issues"
},
"homepage": "https://github.com/lentz/fantasynotify#readme",
"type": "module",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit --watch",
"check-leagues": "node ./dist/checkLeagues.js",
"lint": "eslint .",
"prebuild": "rm -rf ./dist",
"start": "node ./dist/app.js",
"serve": "tsx watch --env-file .env app.ts",
"test": "vitest run",
"test-watch": "vitest"
},
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"body-parser": "^1.20.2",
"client-oauth2": "^4.3.3",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^8.0.1",
"handlebars": "^4.7.7",
"helmet": "^8.0.0",
"mongoose": "^8.8.0",
"mongoose-encryption": "^2.1.2",
"morgan": "^1.10.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@vitest/eslint-plugin": "^1.1.7",
"eslint": "^9.14.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
},
"pre-commit": [
"lint",
"test"
]
}