-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.96 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@frachtwerk/essencium-lib",
"version": "10.0.0",
"description": "This is the component library for the Essencium frontend.",
"keywords": [
"starter",
"boilerplate",
"frontend",
"react",
"mantine"
],
"homepage": "https://github.com/Frachtwerk/essencium-frontend/blob/master/README.md",
"bugs": {
"url": "https://github.com/Frachtwerk/essencium-frontend/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Frachtwerk/essencium-frontend.git"
},
"license": "MIT",
"author": "Frachtwerk GmbH",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"clean": "rimraf dist node_modules .rollup.cache",
"clean:install": "pnpm clean && pnpm install",
"dev": "rollup -c -w",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"sort-package-json": "sort-package-json",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:unit:watch": "vitest watch"
},
"dependencies": {
"clsx": "2.1.1",
"tailwind-merge": "3.5.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"babel-plugin-react-compiler": "1.0.0",
"@frachtwerk/eslint-config-essencium": "workspace:*",
"@frachtwerk/essencium-types": "workspace:*",
"@frachtwerk/prettier-config-essencium": "workspace:*",
"@rollup/plugin-babel": "7.0.0",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-window": "1.8.8",
"@vitejs/plugin-react": "5.2.0",
"eslint": "9.39.4",
"happy-dom": "20.9.0",
"next-router-mock": "1.0.5",
"postcss": "8.5.8",
"postcss-preset-mantine": "1.18.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rollup": "4.60.1",
"rollup-plugin-dts": "6.4.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"tailwindcss": "4.2.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"peerDependencies": {
"@frachtwerk/essencium-types": "workspace:*",
"@hookform/resolvers": "^4.0.0",
"@mantine/core": "^8.0.0",
"@mantine/dates": "^8.0.0",
"@mantine/hooks": "^8.0.0",
"@mantine/spotlight": "^8.0.0",
"@tabler/icons-react": "^3.0.0",
"@tanstack/react-table": "^8.0.0",
"dayjs": "^1.11.0",
"html2canvas-pro": "^1.0.0",
"next": "^16.0.0",
"next-intl": "^4.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.0.0",
"react-window": "^1.0.0",
"zod": "^3.0.0"
},
"engines": {
"node": ">=24",
"pnpm": "10"
},
"volta": {
"node": "24.0.0",
"pnpm": "10.10.0"
}
}