-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "mama-marta",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write --ignore-unknown",
"type-check": "tsc --noEmit",
"gen:theme-typings": "chakra-cli tokens src/custom-theme.ts --strict-component-types --strict-token-types",
"prepare": "is-ci || husky install",
"postinstall": "pnpm gen:theme-typings"
},
"engines": {
"pnpm": "^8.1.0"
},
"packageManager": "pnpm@8.3.1",
"dependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/next-js": "^2.1.3",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/styled-system": "^2.9.0",
"@chakra-ui/theme-tools": "^2.0.16",
"@chakra-ui/utils": "^2.0.14",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.3.6",
"@supabase/auth-ui-shared": "^0.1.4",
"@supabase/supabase-js": "^2.21.0",
"@types/node": "20.1.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"date-fns": "^2.30.0",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^46.0.0",
"framer-motion": "^10.12.8",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.2",
"next": "13.4.1",
"next-seo": "^6.0.0",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"swr": "^2.1.5",
"typescript": "5.0.4",
"uuid": "^9.0.0"
}
}