-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.51 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
{
"name": "tWeb",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"dev:turbo": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"create-template": "node scripts/create-template.mjs",
"deployments:validate": "node scripts/deployments/validate.mjs",
"seed:minecraft-camp": "node scripts/seed/minecraft-camp-demo.mjs",
"seed:keramia-dental": "npx tsx scripts/seed/keramia-dental-demo.ts",
"seed:nagyarcu": "npx tsx scripts/seed.ts",
"auth:reset-oauth": "node scripts/auth/reset-oauth-collections.mjs",
"cms:inspect": "npx tsx scripts/cms/inspect.ts",
"cms:apply-import": "npx tsx scripts/cms/apply-import.ts",
"metrics:analyze": "npx tsx scripts/dev-metrics/analyze.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:concurrency": "vitest run --config vitest.concurrency.config.ts",
"test:concurrency:stripe": "vitest run --config vitest.concurrency.config.ts tests/concurrency/stripe-checkout-race.test.ts",
"test:predeploy": "npm run test:integration && npm run test:concurrency",
"test:numbered": "vitest run tests/integration/numbered-variant-inventory.integration.test.ts tests/integration/cart-variant-persistence.integration.test.ts && vitest run --config vitest.concurrency.config.ts tests/concurrency/numbered-variant-race.test.ts",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.11.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@pdf-lib/fontkit": "^1.1.1",
"@tiptap/extension-color": "^3.20.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-link": "^3.20.0",
"@tiptap/extension-text-style": "^3.20.0",
"@tiptap/extension-underline": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@types/uuid": "^10.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"embla-carousel-react": "^8.6.0",
"handlebars": "^4.7.8",
"jszip": "^3.10.1",
"lucide-react": "^0.574.0",
"mongodb": "^6.12.0",
"mongoose": "^9.2.1",
"motion": "^12.42.0",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.13",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-easy-crop": "^5.5.6",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"react-quill": "^2.0.0",
"react-use": "^17.6.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"stripe": "^22.1.1",
"szamlazz.js": "^9.2.0",
"tailwind-merge": "^3.4.1",
"uuid": "^13.0.0",
"xlsx": "^0.18.5",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/handlebars": "^4.0.40",
"@types/node": "^20",
"@types/nodemailer": "^7.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"mongodb-memory-server": "^11.0.1",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}