-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.13 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
{
"name": "yummy",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "vitest",
"start": "next start",
"lint": "eslint .",
"pretty": "prettier . --write",
"pull": "node scripts/import.mjs",
"generate:blur": "node scripts/generateBlurPlaceholder.mjs",
"seed": "node scripts/seed.mjs",
"reindex": "node scripts/reindex.mjs",
"heroku-postbuild": "echo OK",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "7.2.0",
"@prisma/client": "7.2.0",
"@sentry/nextjs": "10.45.0",
"@statsig/react-bindings": "3.32.2",
"@tailwindcss/postcss": "4.2.2",
"@tanstack/react-query": "5.94.5",
"@types/node": "24.10.15",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"algoliasearch": "5.49.2",
"arktype": "2.2.0",
"autoprefixer": "10.4.27",
"eslint": "9.39.4",
"marked": "17.0.5",
"next": "16.2.1",
"postcss": "8.5.8",
"prisma": "7.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-speech-recognition": "4.0.1",
"statsig-node": "6.5.1",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"vanilla-cookieconsent": "3.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "4.1.3",
"@headlessui/react": "2.2.9",
"@heroicons/react": "2.2.0",
"@storybook/addon-docs": "10.0.8",
"@storybook/addon-links": "10.0.8",
"@storybook/addon-onboarding": "10.0.8",
"@storybook/nextjs": "10.0.8",
"@types/react-speech-recognition": "3.9.6",
"chromatic": "13.3.5",
"dotenv": "17.3.1",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-storybook": "10.0.8",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"storybook": "10.0.8",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.0"
},
"resolutions": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"better-sqlite3": "12.8.0"
}
}