-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.75 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "next-js-boilerplate",
"author": "Ixartz (https://github.com/ixartz)",
"engines": {
"node": ">=20"
},
"scripts": {
"dev:spotlight": "npx @spotlightjs/spotlight",
"dev:next": "next dev",
"dev": "run-p dev:*",
"build:next": "next build --webpack",
"build-local": "npm run build:next",
"build": "npm run build:next",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"clean": "rimraf .next out coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:types": "tsc --noEmit --pretty",
"check:deps": "knip",
"check:i18n": "i18n-check -l src/locales -s en -u src -f next-intl",
"commit": "commit",
"test": "vitest run",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"storybook:test": "vitest run --config .storybook/vitest.config.mts",
"build-storybook": "storybook build"
},
"dependencies": {
"@arcjet/next": "^1.0.0-beta.15",
"@hookform/resolvers": "^5.2.2",
"@logtape/logtape": "^1.3.5",
"@microsoft/signalr": "^10.0.0",
"@sentry/nextjs": "^10.32.1",
"@t3-oss/env-nextjs": "^0.13.10",
"axios": "^1.13.6",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"leaflet": "^1.9.4",
"lucide-react": "^0.563.0",
"next": "^16.1.1",
"next-intl": "^4.7.0",
"pg": "^8.16.3",
"posthog-js": "^1.314.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.70.0",
"react-leaflet": "^5.0.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"xlsx": "^0.18.5",
"zod": "^4.3.5"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@chromatic-com/playwright": "^0.12.8",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@commitlint/prompt-cli": "^20.3.0",
"@eslint-react/eslint-plugin": "^2.5.1",
"@faker-js/faker": "^10.2.0",
"@lingual/i18n-check": "^0.8.17",
"@next/bundle-analyzer": "^16.1.1",
"@next/eslint-plugin-next": "^16.1.1",
"@playwright/test": "^1.57.0",
"@spotlightjs/spotlight": "^4.9.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/nextjs-vite": "^10.1.11",
"@tailwindcss/postcss": "^4.1.18",
"@types/leaflet": "^1.9.21",
"@types/node": "^24.10.4",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.7",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"babel-plugin-react-compiler": "^1.0.0",
"checkly": "^6.9.8",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.4.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-storybook": "^10.1.11",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"knip": "^5.80.0",
"lefthook": "^2.0.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-load-config": "^6.0.1",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16",
"vitest-browser-react": "^2.0.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}