-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tactic-basics-football",
"version": "0.1.0",
"private": false,
"description": "Pizarra tactica de futbol gratis, open source y moderna para entrenadores. Editor 2D y 3D, grabacion de jugadas, biblioteca de entrenamientos.",
"license": "MIT",
"author": "meser1905",
"homepage": "https://github.com/meser1905/TacticBasicsFootball",
"repository": {
"type": "git",
"url": "https://github.com/meser1905/TacticBasicsFootball.git"
},
"bugs": {
"url": "https://github.com/meser1905/TacticBasicsFootball/issues"
},
"keywords": [
"football",
"soccer",
"tactics",
"coaching",
"tactical-board",
"formations",
"training",
"open-source",
"nextjs",
"react",
"threejs",
"typescript"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "echo 'skipping prepare'"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"three": "^0.184.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/three": "^0.184.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.4",
"jsdom": "^25.0.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.0.0"
}