-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dining-api",
"version": "2.4.0",
"description": "Carnegie Mellon University Dining API",
"main": "server.ts",
"scripts": {
"dev": "dotenv -- tsx watch src/server.ts",
"build": "rollup -c",
"start": "NODE_ENV=production node dist/server.js",
"test": "dotenv -e .env.test -- vitest",
"test:coverage": "dotenv -e .env.test -- vitest --coverage",
"__comment": "add DEBUG=testcontainers* to the test command to get testcontainers debug output",
"typecheck": "tsc",
"run-prod": "VOL_SRC=postgres_data docker-compose up --build",
"db:start": "VOL_SRC=postgres_dev_data docker-compose up -d postgres --build",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:check-migrations": "drizzle-kit check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScottyLabs/dining-api.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ScottyLabs/dining-api/issues"
},
"homepage": "https://github.com/ScottyLabs/dining-api#readme",
"dependencies": {
"@elysiajs/cors": "1.3.3",
"@elysiajs/node": "1.4.2",
"@elysiajs/openapi": "^1.4.11",
"@types/express": "^5.0.3",
"axios": "^1.10.0",
"cheerio": "1.0.0-rc.12",
"cookie-signature": "^1.2.2",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.4",
"elysia": "1.4.19",
"express": "^5.1.0",
"jwt-decode": "^4.0.0",
"luxon": "^3.7.2",
"nodemailer": "^8.0.1",
"openid-client": "^6.8.1",
"pg": "^8.16.3",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^3.25.67"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-typescript": "^12.1.4",
"@testcontainers/postgresql": "^11.8.0",
"@types/cookie-signature": "^1.1.2",
"@types/luxon": "^3.7.1",
"@types/node": "^24.0.14",
"@types/nodemailer": "^7.0.9",
"@types/pg": "^8.15.5",
"@vitest/coverage-v8": "4.0.8",
"dotenv": "^17.2.0",
"dotenv-cli": "^8.0.0",
"npm-check-updates": "^18.0.1",
"rollup": "^4.45.1",
"testcontainers": "^11.8.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"vitest": "^4.0.8"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"type": "module",
"exports": "./server.js"
}