-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
111 lines (111 loc) · 3.44 KB
/
package.json
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
{
"name": "namesake",
"version": "0.12.0",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"predev": "convex dev --run seed --until-success",
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite",
"dev:backend": "convex dev",
"build": "tsc -b && vite build",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write",
"check": "tsc -b && biome check",
"check:fix": "tsc -b && biome check --write",
"preview": "vite preview",
"test": "vitest",
"test:once": "vitest run",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"resolutions": {
"@types/mime": "3.0.4",
"jackspeak": "2.1.1"
},
"dependencies": {
"@auth/core": "0.37.4",
"@convex-dev/auth": "^0.0.75",
"@faker-js/faker": "^9.2.0",
"@pdfme/common": "^5.2.8",
"@pdfme/generator": "^5.2.8",
"@pdfme/schemas": "^5.2.8",
"@pdfme/ui": "^5.2.8",
"@tanstack/react-router": "^1.85.0",
"@tiptap/pm": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"convex": "^1.17.3",
"convex-helpers": "^0.1.65",
"framer-motion": "^11.12.0",
"lucide-react": "^0.462.0",
"next-themes": "^0.4.3",
"oslo": "^1.2.1",
"postcss": "^8.4.49",
"pretty-bytes": "^6.1.1",
"react": "^18.3.1",
"react-aria": "^3.36.0",
"react-aria-components": "^1.5.0",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"resend": "4.0.1",
"sonner": "^1.7.0",
"storybook": "^8.4.6",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"text-readability": "^1.1.0",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@babel/preset-react": "^7.25.9",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@edge-runtime/vm": "^4.0.4",
"@playwright/test": "^1.49.0",
"@storybook/addon-themes": "^8.4.6",
"@storybook/manager-api": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/react-vite": "^8.4.6",
"@storybook/test": "^8.4.6",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/router-devtools": "^1.85.0",
"@tanstack/router-plugin": "^1.84.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.6",
"@vitest/ui": "^2.1.6",
"autoprefixer": "^10.4.20",
"axe-html-reporter": "^2.2.11",
"convex-test": "^0.0.34",
"cssnano": "^7.0.6",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-aria-attributes": "^2.0.1",
"tailwindcss-radix-colors": "^1.4.1",
"tailwindcss-react-aria-components": "^1.2.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6"
},
"packageManager": "[email protected]"
}