-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.54 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
{
"name": "discit",
"version": "1.0.0",
"description": "A responsive disc golf disc search engine.",
"author": "Chris Leveille <cdleveille@gmail.com>",
"license": "MIT",
"type": "module",
"module": "src/server/index.ts",
"scripts": {
"prepare": "bun run lefthook.ts",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"build": "bun run scripts/build.ts",
"build:prod": "bun run scripts/build.ts ENV=production && workbox injectManifest workbox-config.json",
"compile": "bun build --compile --minify --sourcemap --bytecode src/server/index.ts --outfile main",
"dev": "bunx --bun vite",
"start": "bun run src/server/index.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@clerk/clerk-react": "^5.30.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@evilmartians/lefthook": "^1.11.12",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@tanstack/react-query": "^5.75.2",
"@types/bun": "latest",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"bun-copy-plugin": "^0.2.1",
"discit-types": "^2.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-infinite-scroll-hook": "^6.0.0",
"react-router-dom": "^7.5.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4",
"workbox-cli": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0"
}
}