-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-types": "set -a; source .env.local; set +a; npx openapi-typescript $NEXT_PUBLIC_SUPABASE_URL/rest/v1/?apikey=$NEXT_PUBLIC_SUPABASE_ANON_KEY --output src/supabase/API.ts",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.186.0",
"@aws-sdk/s3-request-presigner": "^3.186.0",
"@next/env": "^12.3.1",
"@supabase/auth-helpers-nextjs": "^0.2.9",
"@supabase/auth-helpers-react": "^0.2.3",
"@supabase/supabase-js": "^1.35.7",
"@vercel/analytics": "^1.0.0",
"hamburger-react": "^2.5.0",
"hash-wasm": "^4.9.0",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"next": "12.3.1",
"next-seo": "^5.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-icons": "^4.4.0",
"react-imgix": "^9.5.4",
"react-query": "^3.39.2",
"react-textarea-autosize": "^8.3.4",
"react-transition-group": "^4.4.5",
"uuid": "^9.0.0",
"web-worlding": "^0.1.3"
},
"devDependencies": {
"@types/lodash": "^4.14.186",
"@types/node": "^18.7.2",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-imgix": "^9.5.0",
"@types/react-transition-group": "^4.4.5",
"@types/uuid": "^8.3.4",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=6",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.22",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.scss": [
"prettier --write"
]
}
}