-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.67 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.67 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ycode",
"version": "0.1.6",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"dev:webpack": "next dev -p 3002 --webpack",
"prod": "npm run build && npm run start",
"build": "next build",
"start": "next start -p 3002",
"cache:clear": "rm -rf .next",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type-check": "tsc --noEmit",
"migrate:make": "NODE_NO_WARNINGS=1 knex migrate:make --knexfile knexfile.ts -x ts",
"migrate:latest": "NODE_NO_WARNINGS=1 knex migrate:latest --knexfile knexfile.ts",
"migrate:rollback": "NODE_NO_WARNINGS=1 knex migrate:rollback --knexfile knexfile.ts",
"migrate:status": "NODE_NO_WARNINGS=1 knex migrate:status --knexfile knexfile.ts",
"migrate:credentials": "npx ts-node scripts/migrate-credentials.ts",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-spring/web": "^10.0.3",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.76.1",
"@tiptap/core": "^3.10.5",
"@tiptap/extension-heading": "^3.10.7",
"@tiptap/extension-placeholder": "^3.11.0",
"@tiptap/extension-subscript": "^3.15.3",
"@tiptap/extension-superscript": "^3.15.3",
"@tiptap/pm": "^3.10.5",
"@tiptap/react": "^3.10.7",
"@tiptap/starter-kit": "^3.10.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gsap": "^3.13.0",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.546.0",
"marked": "^17.0.1",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.13",
"pg": "^8.16.3",
"radix-ui": "^1.4.3",
"react": "19.1.0",
"react-colorful": "^5.6.1",
"react-dom": "19.1.0",
"react-gcolor-picker": "^1.3.3",
"react-hook-form": "^7.66.0",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/postcss": "^4",
"@types/lodash": "^4.17.20",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.19.23",
"@types/nodemailer": "^7.0.9",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"punycode": "^2.3.1",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"typescript-eslint": "^8.54.0"
},
"overrides": {
"punycode": "$punycode",
"whatwg-url": "^14.2.0",
"tr46": "^5.1.0",
"diff": ">=8.0.3",
"glob": ">=10.4.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}