-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "unfork",
"description": "A TypeScript Next.js that will help you to unfork projects",
"version": "1.0.0",
"private": true,
"author": "Estee Tey",
"license": "MIT",
"keywords": [
"nextjs",
"typescript",
"supabase",
"octokit"
],
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --fix",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz",
"update-types": "npx openapi-typescript \"${NEXT_PUBLIC_SUPABASE_URL}/rest/v1/?apikey=${NEXT_PUBLIC_SUPABASE_ANON_KEY}\" --version=2 --output src/types/supabase.ts"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@floating-ui/react-dom": "0.7.2",
"@supabase/auth-helpers-nextjs": "0.2.9",
"@supabase/auth-helpers-react": "0.2.4",
"@supabase/supabase-js": "1.35.3",
"autoprefixer": "10.4.7",
"daisyui": "2.31.0",
"downshift": "6.1.12",
"next": "13.0.1",
"octokit": "1.7.2",
"postcss": "8.4.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"sweetalert2": "11.4.17",
"sweetalert2-react-content": "5.0.0",
"tailwind-scrollbar": "2.0.1",
"tailwindcss": "3.1.3"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@octokit/plugin-rest-endpoint-methods": "6.6.2",
"@tailwindcss/typography": "0.5.7",
"@types/node": "16.11.36",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.17.0",
"eslint-config-next": "13.0.1",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.0",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "0.1.13",
"typescript": "4.7.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}