-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.68 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
86
{
"name": "@frachtwerk/essencium-app",
"version": "9.5.0",
"private": true,
"description": "This is the boilerplate based on the Essencium frontend library.",
"scripts": {
"build": "next build",
"clean": "rimraf dist node_modules",
"clean:install": "pnpm clean && pnpm install",
"dev": "next dev",
"dev:test": "NODE_ENV=test next dev",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"preview": "next start",
"sort-package-json": "sort-package-json",
"test": "pnpm test:unit && pnpm test:e2e",
"test:e2e": "NODE_ENV=development playwright test",
"test:e2e:development": "NODE_ENV=development playwright test",
"test:e2e:production": "NODE_ENV=production playwright test",
"test:e2e:test": "NODE_ENV=test playwright test",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:unit:watch": "vitest watch"
},
"dependencies": {
"@frachtwerk/essencium-lib": "workspace:*",
"@frachtwerk/essencium-types": "workspace:*",
"@hookform/resolvers": "4.1.3",
"@mantine/core": "8.3.18",
"@mantine/dates": "8.3.18",
"@mantine/hooks": "8.3.18",
"@mantine/notifications": "8.3.18",
"@mantine/spotlight": "8.3.18",
"@tabler/icons-react": "3.40.0",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-table": "8.21.3",
"axios": "1.15.0",
"dayjs": "1.11.20",
"jotai": "2.18.1",
"next": "16.1.7",
"next-intl": "4.9.1",
"nodemailer": "8.0.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "7.71.2",
"react-window": "1.8.11",
"zod": "3.25.76"
},
"devDependencies": {
"@frachtwerk/eslint-config-essencium": "workspace:*",
"@frachtwerk/prettier-config-essencium": "workspace:*",
"@playwright/test": "1.59.0",
"@types/node": "22.19.15",
"@types/nodemailer": "7.0.11",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@eslint/js": "9.39.4",
"typescript-eslint": "8.58.0",
"@vitejs/plugin-react": "5.1.4",
"dotenv": "17.3.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"postcss": "8.5.8",
"postcss-preset-mantine": "1.18.0",
"prettier": "3.8.1",
"tailwindcss": "4.2.2",
"@tailwindcss/postcss": "4.2.1",
"typescript": "5.9.3",
"vite": "7.3.2",
"vitest": "4.0.18"
},
"engines": {
"node": ">=24",
"pnpm": "10"
},
"volta": {
"node": "24.0.0",
"pnpm": "10.10.0"
}
}