-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "growx",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier --write src/**/*.{ts,tsx}",
"generate": "supabase gen types typescript --linked > src/database/DatabaseDefition.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.4",
"@chakra-ui/react": "^2.2.4",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/open-sans": "^4.5.10",
"@supabase/auth-helpers-nextjs": "^0.4.0",
"@supabase/auth-helpers-react": "^0.3.0",
"@supabase/supabase-js": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"formik": "^2.2.9",
"framer-motion": "^7.5.3",
"next": "12.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-query": "^3.39.2",
"react-tsparticles": "^2.5.3",
"tsparticles": "^2.5.3"
},
"devDependencies": {
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.1",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.5",
"typescript": "4.7.4"
}
}