-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.66 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
{
"name": "@frachtwerk/essencium",
"version": "1.0.0",
"private": true,
"description": "This is a Next.js-based boilerplate monorepo.",
"keywords": [
"boilerplate",
"frontend",
"react",
"next",
"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",
"scripts": {
"build": "pnpm --stream -r build",
"clean": "pnpm --stream -r clean && rimraf dist node_modules",
"clean:install": "pnpm i -w && pnpm clean && pnpm install",
"dev": "pnpm run --parallel --filter @frachtwerk/essencium-app --filter @frachtwerk/essencium-lib dev",
"dev:docs": "pnpm --dir ./packages/docs dev",
"format:check": "pnpm --stream -r format:check",
"format:write": "pnpm --stream -r format:write",
"lint": "pnpm --stream -r lint",
"preview": "pnpm --filter @frachtwerk/essencium-app preview",
"seed-db": "ts-node ./scripts/seed-db.ts",
"setup-env": "pnpm install && husky install",
"sort-package-json": "sort-package-json && pnpm --stream -r sort-package-json",
"test": "pnpm --stream -r test",
"test:e2e": "pnpm --filter @frachtwerk/essencium-app test:e2e",
"test:unit": "pnpm --stream -r test:unit",
"test:unit:coverage": "pnpm --stream -r test:unit:coverage",
"test:unit:watch": "pnpm --stream -r test:unit:watch"
},
"dependencies": {
"sort-package-json": "3.6.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@faker-js/faker": "10.3.0",
"@frachtwerk/eslint-config-essencium": "workspace:*",
"@frachtwerk/essencium-types": "workspace:*",
"@frachtwerk/prettier-config-essencium": "workspace:*",
"axios": "1.14.0",
"eslint": "9.39.4",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=24",
"pnpm": "10"
},
"volta": {
"node": "24.0.0",
"pnpm": "10.10.0"
},
"pnpm": {
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"@mantine/core": "8.3.15",
"@mantine/dates": "8.3.15",
"@mantine/hooks": "8.3.15",
"@mantine/notifications": "8.3.15",
"@mantine/spotlight": "8.3.15",
"@mantine/store": "8.3.15"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}