-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deznode/nosilha.git"
},
"bugs": {
"url": "https://github.com/deznode/nosilha/issues"
},
"homepage": "https://github.com/deznode/nosilha#readme",
"scripts": {
"dev:content": "velite --watch",
"build:content": "velite --clean",
"dev:next": "next dev",
"build:next": "next build",
"build:search": "pagefind --site .next/server/app --output-path public/pagefind",
"validate:content": "npx tsx scripts/validate-content.ts",
"validate:content:full": "npx tsx scripts/validate-content.ts --full",
"scaffold:article": "npx tsx scripts/scaffold-article.ts",
"check:translations": "npx tsx scripts/check-translations.ts",
"dev": "run-p dev:*",
"build": "run-s build:content build:next build:search",
"start": "next start",
"lint": "eslint .",
"sync:brand": "node ../../scripts/sync-brand-tokens.mjs",
"clean": "rm -rf .next playwright-report test-results",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:unit": "vitest --project unit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"lint:all": "eslint . && prettier --check ."
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@hookform/resolvers": "^5.4.0",
"@next/third-parties": "16.2.10",
"@octokit/rest": "^22.0.1",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.110.2",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-devtools": "^5.101.2",
"@types/react-syntax-highlighter": "^15.5.13",
"clsx": "^2.1.1",
"exifr": "^7.1.3",
"framer-motion": "^12.42.2",
"lucide-react": "^1.24.0",
"mapbox-gl": "^3.26.0",
"next": "16.2.11",
"next-router-mock": "^1.0.5",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-dropzone": "^17.0.0",
"react-hook-form": "^7.81.0",
"react-map-gl": "^8.1.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"recharts": "^3.9.2",
"rehype-pretty-code": "^0.14.4",
"resend": "^6.17.2",
"sharp": "^0.35.3",
"shiki": "^4.3.1",
"supercluster": "^8.0.1",
"use-supercluster": "^1.2.0",
"velite": "^0.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@next/bundle-analyzer": "16.2.10",
"@playwright/test": "^1.61.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/geojson": "^7946.0.16",
"@types/mapbox-gl": "^3.5.0",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/supercluster": "^7.1.3",
"@vitejs/plugin-react": "^5.2.0",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.4.1",
"eslint": "^10",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"jsdom": "^29.0.2",
"lightningcss-darwin-x64": "^1.32.0",
"lightningcss-linux-x64-gnu": "1.32.0",
"npm-run-all": "^4.1.5",
"pagefind": "^1.5.0",
"playwright": "^1.61.1",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4",
"typescript": "^6",
"vitest": "^4.1.10"
}
}