-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 977 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 977 Bytes
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
{
"name": "discgolf-api",
"type": "module",
"version": "1.0.0",
"description": "",
"author": "Max Greive",
"license": "ISC",
"keywords": [],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc && tsc-alias",
"start": "node dist/server.js",
"biome:check": "biome check .",
"biome:fix": "biome check . --write"
},
"dependencies": {
"axios": "^1.7.2",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"ioredis": "^5.8.2",
"stripe": "^16.5.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/axios": "^0.9.36",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/ioredis": "^4.28.10",
"@types/node": "^24.10.0",
"@types/stripe": "^8.0.416",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}