-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.85 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.85 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
84
85
{
"name": "mantine-next-template",
"version": "1.0.0",
"private": true,
"homepage": "https://algirdyz.github.io/boardgame-toolkit/",
"scripts": {
"dev": "concurrently \"npm:dev:client\" \"npm:dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch server/server.ts",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node dist/server/server.js",
"typecheck": "tsc --noEmit",
"lint": "npm run eslint && npm run stylelint",
"stylelint": "stylelint '**/*.css' --cache",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"ci": "npm run prettier:check && npm run lint && npm run typecheck && npm run test",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@mantine/core": "8.3.1",
"@mantine/form": "^8.3.1",
"@mantine/hooks": "8.3.1",
"@mantine/modals": "^8.3.1",
"@mantine/notifications": "^8.3.1",
"@tabler/icons": "^3.34.1",
"@tabler/icons-react": "^3.34.0",
"@tanstack/react-query": "^5.87.1",
"@tanstack/react-query-devtools": "^5.87.1",
"@tanstack/react-router": "^1.131.35",
"@tanstack/react-router-devtools": "^1.131.35",
"@tanstack/router-vite-plugin": "^1.131.35",
"@vitejs/plugin-react": "^5.0.2",
"better-sqlite3": "^12.2.0",
"concurrently": "^9.2.1",
"fabric": "^6.7.1",
"fastify": "^5.6.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"vite": "^7.1.4",
"zod": "^4.1.8"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@eslint/js": "^9.29.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/gh-pages": "^6",
"@types/node": "^24.3.1",
"@types/react": "19.1.8",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/ui": "^3.2.4",
"babel-loader": "^10.0.0",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"eslint": "^9.29.0",
"eslint-config-mantine": "^4.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.5",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"stylelint": "^16.20.0",
"stylelint-config-standard-scss": "^15.0.1",
"tsx": "^4.20.5",
"typescript": "5.8.3",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.9.3"
}