-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "full-stack-template",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "dotenv -e .dev.env -e .public.env -e .secret.env -- turbo run dev",
"dev:scouting": "dotenv -e .dev.env -e .public.env -e .secret.env -- turbo run dev --filter=scouting*",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"serve": "dotenv -e .public.env -e .secret.env -- turbo run serve",
"deploy": "npm run build && npm run serve",
"check-types": "turbo run check-types",
"generate": "tsx scripts/generateProject.ts",
"delete": "tsx scripts/deleteProject.ts"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*/backend",
"apps/*/frontend",
"packages/*"
],
"dependencies": {
"@radix-ui/react-slider": "^1.3.6",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/react-table": "^8.21.3",
"@vitejs/plugin-react": "^5.1.4",
"@zxing/browser": "^0.1.5",
"axios": "^1.13.5",
"babel-plugin-react-compiler": "^1.0.0",
"chart.js": "^4.5.1",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"express": "^5.2.1",
"fp-ts": "^2.16.11",
"html5-qrcode": "^2.3.8",
"http-proxy-middleware": "^3.0.5",
"http-status-codes": "^2.3.0",
"io-ts": "^2.2.22",
"is-odd": "^3.0.1",
"mongodb": "^7.1.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-chartjs-2": "^5.3.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.13.0",
"tailwindcss": "^4.2.0",
"tsx": "^4.21.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@dotenv-run/cli": "^1.3.6",
"@types/chart.js": "^2.9.41",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.6",
"@types/is-odd": "^3.0.4",
"@types/mongodb": "^4.0.6",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"cross-env": "^10.1.0",
"esbuild": "^0.27.3",
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"typescript": "^5.9.3"
}
}