-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.89 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
{
"name": "grovs",
"version": "0.1.1",
"description": "SaaS dashboard for mobile app growth — deep links, messaging campaigns, revenue tracking, and audience analytics",
"author": "appssemble",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grovs-io/dashboard.git"
},
"homepage": "https://github.com/grovs-io/dashboard#readme",
"bugs": {
"url": "https://github.com/grovs-io/dashboard/issues"
},
"scripts": {
"clean": "rm -rf .next out",
"dev": "next dev --port 3001",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"build:test": "cross-env NEXT_PUBLIC_ENV=test next build",
"build:prod": "cross-env NEXT_PUBLIC_ENV=production next build",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"analyze": "ANALYZE=true npm run build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@craftjs/core": "^0.2.12",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@icons-pack/react-simple-icons": "^13.7.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-table": "^8.21.3",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cross-env": "^7.0.3",
"date-fns": "^4.1.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.525.0",
"next": "^16.2.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.337.0",
"react": "^19.2.3",
"react-day-picker": "^9.8.1",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.2",
"react-password-checklist": "^1.8.1",
"recharts": "^3.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"validator": "^13.15.15",
"zod": "^4.3.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.0",
"@playwright/test": "^1.58.2",
"@shikijs/transformers": "^3.9.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/validator": "^13.15.2",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"dotenv-cli": "^8.0.0",
"eslint-config-next": "^16.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"shiki": "^3.9.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,css,md}": [
"prettier --write"
]
}
}