-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "touchdown",
"version": "2.0.0",
"type": "module",
"description": "Connect NFL players by their mutual teammates",
"scripts": {
"dev": "bun --hot ./src/index.html",
"build": "bun run lint && bun run build.ts",
"start": "bun run serve.ts",
"lint": "tsc --noEmit",
"test": "bun test",
"format": "prettier --write .",
"generate:all": "python3 scripts/generate-raw.py && bun run scripts/generate-ids.ts && bun run scripts/generate-mappings.ts && bun run scripts/generate-popular-players.ts",
"generate:raw": "python3 scripts/generate-raw.py",
"generate:ids": "bun run scripts/generate-ids.ts",
"generate:mappings": "bun run scripts/generate-mappings.ts",
"generate:popular": "bun run scripts/generate-popular-players.ts"
},
"dependencies": {
"preact": "^10.19.3",
"radix-ui": "^1.4.3",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat"
},
"devDependencies": {
"@ahh-ts/underscore": "^0.1.1",
"@types/bun": "^1.3.0",
"cheerio": "^1.0.0",
"header-generator": "^2.1.54",
"playwright": "^1.48.0",
"prettier": "^3.6.2",
"proxifly": "^1.0.0",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"zod": "^4.1.12"
}
}