-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "web-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "pnpm exec tsc --noEmit",
"prettier": "pnpm exec prettier --check .",
"prettier:fix": "pnpm exec prettier --write .",
"prepare": "husky",
"pre-commit": "(pnpm run tsc || true) && (pnpm run lint || true) && pnpm run prettier"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"dotenv": "^16.4.5",
"next": "^15.0.4",
"react": "^18",
"react-dom": "^18",
"react-multi-select-component": "^4.3.4",
"styled-components": "^6.1.13",
"supabase": "^1.200.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@next/swc-darwin-arm64": "^15.0.4",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"typescript": "5.4",
"yarnhook": "^0.6.2"
}
}