-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
{
"name": "jankiroku",
"version": "0.1.7",
"description": "",
"main": "index.js",
"engines": {
"node": "22.x"
},
"volta": {
"node": "22.13.1"
},
"scripts": {
"prepare": "husky",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3002",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"type": "tsc",
"test": "vitest run",
"pre-commit": "npm run lint:fix && npm run format && npm run type && npm run test",
"supabase:start": "env-cmd -f .env.local supabase start",
"supabase:stop": "env-cmd -f .env.local supabase stop",
"supabase:login": "supabase login",
"supabase:reset": "env-cmd -f .env.local supabase db reset",
"supabase:diff": "env-cmd -f .env.local supabase db diff -f local",
"supabase:squash": "supabase migration squash",
"supabase:type": "env-cmd -f .env.local supabase gen types typescript --local > lib/database.types.ts",
"migrate": "tsc --skipLibCheck --esModuleInterop --outDir lib/migration/dist lib/migration/index.ts && node lib/migration/dist/migration/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h8570rg/jankiroku.git"
},
"author": "https://github.com/h8570rg",
"license": "ISC",
"bugs": {
"url": "https://github.com/h8570rg/jankiroku/issues"
},
"homepage": "https://github.com/h8570rg/jankiroku#readme",
"dependencies": {
"@dnd-kit/sortable": "10.0.0",
"@heroui/react": "2.6.14",
"@hookform/resolvers": "3.10.0",
"@supabase/ssr": "0.5.2",
"@supabase/supabase-js": "2.48.1",
"classnames": "2.5.1",
"dayjs": "1.11.13",
"framer-motion": "12.0.5",
"next": "15.1.6",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"recharts": "2.15.0",
"sharp": "0.33.5",
"swr": "2.3.0",
"use-debounce": "10.0.4",
"zod": "3.24.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"autoprefixer": "10.4.20",
"env-cmd": "10.1.0",
"eslint": "9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-tailwindcss": "3.18.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"supabase": "2.6.8",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0",
"vitest": "3.0.4"
}
}