-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "eatery-blue-backend",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "dist/src/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"start:prod": "NODE_ENV=production node dist/src/server.js",
"start:dev": "NODE_ENV=development node dist/src/server.js",
"dev": "NODE_ENV=development nodemon -x tsx src/server.ts",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"format": "prettier --write '{src,test}/**/*.ts'",
"scrape": "tsx prisma/scraper.ts",
"scrape:scheduled": "SCHEDULED_MODE=true node dist/prisma/scraper.js",
"studio": "prisma studio",
"send-notifications": "tsx prisma/notificationService.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuappdev/eatery-blue-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cuappdev/eatery-blue-backend/issues"
},
"homepage": "https://github.com/cuappdev/eatery-blue-backend#readme",
"dependencies": {
"@prisma/client": "^6.16.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"firebase-admin": "^13.6.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"node-cron": "^4.2.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^15.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"prisma": "^6.16.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}