forked from ScottyLabs/dining-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "dining-api",
"version": "2.4.0",
"description": "Carnegie Mellon University Dining API",
"main": "server.ts",
"scripts": {
"test": "jest --coverage",
"start": "bun --hot run src/server.ts",
"build": "bun build ./src/index.ts --outdir dist"
},
"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.0.2",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"elysia": "^1.0.16",
"npm-check-updates": "^16.14.20"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/bun": "^1.1.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"bun-types": "^1.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}