-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.33 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "eslint --fix; prettier --write .",
"test": "vitest run --project=unit",
"test:coverage": "vitest run --project=unit --coverage",
"commit": "cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storybook:design-system": "pnpm --filter @frontend/design-system storybook",
"build-storybook:design-system": "pnpm --filter @frontend/design-system build-storybook",
"gen:sim-fixtures": "esbuild src/features/simulation/mock/generate-fixtures.ts --bundle --platform=node --format=esm --target=node20 --outfile=.next/cache/gen-fixtures.mjs --external:node:* >/dev/null && FIXTURES_OUT_DIR=src/features/simulation/mock/run-fixtures node .next/cache/gen-fixtures.mjs",
"gen:locality-fixtures": "esbuild src/features/locality/mock/generate-locality-fixtures.ts --bundle --platform=node --format=esm --target=node20 --outfile=.next/cache/gen-locality.mjs --external:node:* >/dev/null && LOCALITY_OUT_DIR=src/features/locality/mock/locality-fixtures node .next/cache/gen-locality.mjs"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@frontend/design-system": "workspace:*",
"@tabler/icons-react": "^3.41.1",
"@tanstack/react-query": "^5.95.2",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"ky": "^1.14.3",
"lucide-react": "^1.7.0",
"next": "16.2.1",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"serwist": "^9.5.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.1",
"@serwist/turbopack": "^9.5.7",
"@storybook/addon-a11y": "^10.3.3",
"@storybook/addon-docs": "^10.3.3",
"@storybook/addon-onboarding": "^10.3.3",
"@storybook/addon-vitest": "^10.3.3",
"@storybook/nextjs-vite": "^10.3.3",
"@tailwindcss/postcss": "^4",
"@tanstack/react-query-devtools": "^5.95.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/navermaps": "^3.9.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.27.4",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-storybook": "^10.3.3",
"jsdom": "^26.1.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"storybook": "^10.3.3",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.22.0"
}