-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3.29 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
{
"name": "manifund",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"dev:dev": "cross-env NEXT_PUBLIC_SUPABASE_ENV=dev next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-types": "npx supabase gen types typescript --project-id fkousziwzbnkdkldjper --schema public > db/database.types.ts",
"gen-dev-types": "npx supabase gen types typescript --project-id oucjhqqretizqonyfyqu --schema public > db/database.types.ts",
"format": "npx prettier --write .",
"update-deps": "npx npm-check-updates -i",
"ts-watch": "tsc --watch --noEmit --incremental --preserveWatchOutput --pretty",
"snap:version": "snaplet --version",
"snap:restore": "snaplet snapshot restore",
"snap:restore-empty": "snaplet snapshot restore --no-reset --no-data",
"//": "Consider removing --no-reset flag to drop the database, if projects table is missing; see https://docs.snaplet.dev/core-concepts/restore"
},
"dependencies": {
"@floating-ui/react": "^0.19.2",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.15",
"@radix-ui/react-slider": "^1.1.2",
"@stripe/stripe-js": "^1.52.0",
"@supabase/auth-helpers-nextjs": "^0.7.2",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/auth-ui-shared": "^0.1.6",
"@supabase/supabase-js": "^2.33.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tiptap/extension-bubble-menu": "^2.2.4",
"@tiptap/extension-image": "^2.2.4",
"@tiptap/extension-link": "^2.2.4",
"@tiptap/extension-mention": "^2.2.4",
"@tiptap/extension-placeholder": "^2.2.4",
"@tiptap/html": "^2.2.4",
"@tiptap/pm": "^2.2.4",
"@tiptap/react": "^2.2.4",
"@tiptap/starter-kit": "^2.2.4",
"@tiptap/suggestion": "^2.2.4",
"@types/d3-axis": "^3.0.5",
"@types/d3-zoom": "^3.0.6",
"@types/lodash": "^4.14.191",
"@types/mailgun-js": "^0.22.13",
"@types/node": "^20.11.30",
"@types/react": "^18.3.4",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.3.0",
"@vercel/speed-insights": "^1.0.10",
"alea": "^1.0.1",
"clsx": "^1.2.1",
"d3-axis": "^3.0.0",
"d3-zoom": "^3.0.0",
"date-fns": "^2.29.3",
"eslint": "^8.40.0",
"eslint-config-next": "^14.0.4",
"lodash": "^4.17.21",
"next": "14.2.5",
"rc-slider": "^10.1.1",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-compare-slider": "^3.0.1",
"react-datasheet-grid": "^4.11.4",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-uuid": "^2.0.0",
"recharts": "^2.8.0",
"server-only": "^0.0.1",
"stripe": "^11.17.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tippy.js": "^6.3.7",
"typescript": "^4.9.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@tiptap/core": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"encoding": "^0.1.13",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"snaplet": "0.89.4",
"tailwindcss": "^3.2.6"
},
"trustedDependencies": [
"supabase"
]
}