-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
{
"name": "SimDraft",
"version": "1.1.0",
"private": true,
"author": "MGSimard <mgsimard.dev@gmail.com> (https://mgsimard.dev)",
"description": "League of Legends Draft Simulator",
"license": "MIT",
"type": "module",
"imports": {
"#/*": "./src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MGSimard/simdraft.git"
},
"keywords": [
"SimDraft",
"League of Legends",
"Drafting Simulator"
],
"bugs": {
"url": "https://github.com/MGSimard/simdraft/issues"
},
"homepage": "https://github.com/MGSimard/simdraft#readme",
"scripts": {
"dev": "vite dev --port 3000",
"preview": "vite preview",
"build": "vite build",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --report-unused-disable-directives",
"lint:fix": "oxlint --report-unused-disable-directives --fix",
"lint:github": "oxlint --report-unused-disable-directives --format=github",
"test": "vitest run"
},
"dependencies": {
"@tanstack/react-router": "^1.168.18",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/router-plugin": "^1.167.18",
"clsx": "^2.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@rolldown/plugin-babel": "^0.2.2",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/eslint-plugin-router": "^1.161.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/babel__core": "^7.20.5",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=25.0.0"
}
}