forked from ScottyLabs/dining-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "dining-api",
"version": "2.4.0",
"description": "Carnegie Mellon University Dining API",
"main": "server.ts",
"scripts": {
"test": "AXIOS_RETRY_INTERVAL_MS=0 IN_TEST_MODE=true SLACK_BACKEND_WEBHOOK_URL=/ SLACK_FRONTEND_WEBHOOK_URL=/ DATABASE_URL=/ jest --coverage",
"test-watch": "AXIOS_RETRY_INTERVAL_MS=0 IN_TEST_MODE=true SLACK_WEBHOOK_URL=/ SLACK_BACKEND_WEBHOOK_URL=/ SLACK_FRONTEND_WEBHOOK_URL=/ jest --watch",
"dev": "dotenv -- tsx watch src/server.ts",
"start": "NODE_ENV=production dotenv -- node dist/server.js",
"build": "rollup -c"
},
"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.3.0",
"axios": "^1.10.0",
"cheerio": "^1.0.0-rc.12",
"elysia": "^1.3.5",
"pg": "^8.16.3",
"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",
"@types/bun": "^1.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.14",
"@types/pg": "^8.11.2",
"babel-jest": "^29.7.0",
"bun-types": "^1.1.7",
"dotenv": "^17.2.0",
"dotenv-cli": "^8.0.0",
"jest": "^29.7.0",
"npm-check-updates": "^18.0.1",
"rollup": "^4.45.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"tsx": "^4.20.3"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"type": "module",
"exports": "./server.js"
}