-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.05 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
{
"name": "planifets-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rimraf .next out coverage node_modules",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --pretty",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --reporter=list",
"test:e2e:ui": "playwright test --ui",
"knip": "knip",
"unused": "knip --use-tsconfig-files"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"localforage": "^1.10.0",
"lucide-react": "^0.503.0",
"next": "^16.1.7",
"next-intl": "^4.0.2",
"posthog-js": "^1.373.4",
"posthog-node": "^5.21.2",
"react": "19.2.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.2.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.2.0",
"vaul": "^1.1.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "4.12.0",
"@eslint-react/eslint-plugin": "^1.19.0",
"@next/eslint-plugin-next": "16.1.7",
"@playwright/test": "^1.52.0",
"@stylistic/eslint-plugin": "4.2.0",
"@tailwindcss/postcss": "^4.1.4",
"@types/debug": "^4.1.12",
"@types/estree": "^1.0.5",
"@types/json-schema": "^7.0.15",
"@types/mdast": "^4.0.3",
"@types/ms": "2.1.0",
"@types/node": "^25.4.0",
"@types/normalize-package-data": "^2.4.4",
"@types/prop-types": "^15.7.11",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-transition-group": "^4.4.10",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@typescript-eslint/utils": "^8.30.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "16.1.7",
"eslint-plugin-format": "1.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-testing-library": "^7.1.1",
"knip": "^5.86.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tailwindcss": "4.1.4",
"tw-animate-css": "^1.2.8",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"resolutions": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"brace-expansion": "^5.0.5",
"flatted": "^3.4.2",
"glob": "^11.1.0",
"js-yaml": "^4.1.1",
"minimatch": "^10.2.3",
"picomatch": "^4.0.4",
"rollup": ">=4.59.0"
}
}