-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.46 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
{
"name": "CircleLens",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"format": "prettier . --write",
"format:check": "prettier . --check",
"favicon:generate": "sh scripts/generate-favicon.sh",
"i18n:audit": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON scripts/i18n-audit.ts",
"i18n:check": "i18n-check --source en --locales src/i18n/messages --format next-intl --unused src --only missingKeys invalidKeys unused undefined --reporter summary",
"i18n:ci": "pnpm i18n:audit && pnpm i18n:check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"bdd:gen": "bddgen",
"e2e": "pnpm bdd:gen && playwright test",
"e2e:ui": "pnpm bdd:gen && playwright test --ui",
"e2e:headed": "pnpm bdd:gen && playwright test --headed",
"e2e:debug": "pnpm bdd:gen && playwright test --debug",
"e2e:report": "playwright show-report",
"check": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm i18n:ci && pnpm test:run && pnpm e2e && pnpm build"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"next-intl": "^4.13.1",
"radix-ui": "^1.6.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@lingual/i18n-check": "^0.9.5",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@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/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "9.39.4",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jsdom": "^29.1.1",
"playwright-bdd": "^9.2.0",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}