-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.67 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.67 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
{
"name": "frans-client",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "pnpm build:client && pnpm build:server",
"build:client": "tsc -b && vite build && touch ./internal/routes/client/assets/.gitkeep",
"build:server": "./scripts/gen_version.sh &&./scripts/prebuild.sh && go build",
"docker:test": "./scripts/gen_version.sh && docker compose -f docker-compose.test.yaml up --build",
"lint": "eslint .",
"preview": "vite preview",
"dev:go": "go run github.com/air-verse/air@v1.62.0",
"services": "docker compose -f docker-compose.dev.yaml up",
"keycloak:export": "./keycloak/keycloak_export.sh",
"ent": "go run entgo.io/ent/cmd/ent@latest",
"ent:generate": "go run entgo.io/ent/cmd/ent@latest generate ./internal/ent/schema",
"ent:new": "go run entgo.io/ent/cmd/ent@latest new --target ./internal/ent/schema",
"golines": "go run github.com/segmentio/golines@latest",
"db:migrate": "go run main.go migrate",
"db:diff": "./scripts/gen_migrations.sh",
"test": "go test ./...",
"test:cover": "./scripts/test_coverage.sh",
"test:html": "go tool cover -html=coverage.txt"
},
"dependencies": {
"@mantine/core": "^9.1.1",
"@mantine/dropzone": "^9.1.1",
"@mantine/form": "^9.1.1",
"@mantine/hooks": "^9.1.1",
"@mantine/notifications": "^9.1.1",
"@tabler/icons-react": "^3.41.1",
"@tanstack/react-query": "^5.100.7",
"@tanstack/react-router": "^1.169.1",
"@tanstack/react-router-devtools": "^1.166.13",
"axios": "^1.15.2",
"date-fns": "^4.1.0",
"filesize": "^11.0.17",
"generate-password-browser": "^1.1.0",
"i18next": "^26.0.8",
"i18next-browser-languagedetector": "^8.2.1",
"mantine-form-zod-resolver": "^1.3.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.6",
"zod": "^4.4.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tanstack/react-query-devtools": "5.100.7",
"@tanstack/router-plugin": "1.167.32",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"eslint": "10.3.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.6.0",
"jiti": "2.6.1",
"postcss": "8.5.13",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"tsx": "4.21.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1",
"vite": "8.0.10",
"vite-plugin-i18next-loader": "3.1.3"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">22.0.0"
}
}