-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.39 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
{
"name": "dobi-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint --fix",
"mock": "npx tsx watch ./src/mocks/http.ts",
"dev:mock": "concurrently --kill-others \"NEXT_PUBLIC_API_MOCKING=enable pnpm dev\" \"pnpm mock\"",
"prepare": "husky",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.7",
"@sentry/nextjs": "^10.8.0",
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"@tanstack/react-table": "^8.20.6",
"@vanilla-extract/css": "^1.17.0",
"@vanilla-extract/dynamic": "^2.1.2",
"@vanilla-extract/recipes": "^0.5.5",
"date-fns": "^4.1.0",
"next": "14.2.25",
"next-auth": "^4.24.11",
"react": "^18",
"react-day-picker": "^9.5.0",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.0",
"@types/mixpanel-browser": "^2.51.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vanilla-extract/next-plugin": "^2.4.8",
"@vanilla-extract/vite-plugin": "^5.0.3",
"@vitejs/plugin-react": "^4.5.1",
"concurrently": "^9.1.1",
"eslint": "^8",
"eslint-config-next": "14.2.22",
"express": "^4.21.2",
"husky": "^9.1.7",
"jira-prepare-commit-msg": "^1.7.2",
"lint-staged": "^15.4.3",
"jsdom": "^26.1.0",
"mixpanel-browser": "^2.68.0",
"msw": "^2.7.0",
"typescript": "^5",
"vitest": "^3.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
},
"jira-prepare-commit-msg": {
"messagePattern": "[$J] $M",
"allowEmptyCommitMessage": false,
"ignoredBranchesPattern": "^(main|develop)$"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "next lint --fix --file"
}
}