-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.65 KB
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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "allclear-web",
"version": "1.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"export": "next export -o dist",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{js,ts,tsx}\" && prettier --write \"pages/**/*.{js,ts,tsx}\"",
"test": "vitest --watch",
"test:run": "vitest run",
"clean": "rm -rf .next",
"login-supa": "npx supabase login",
"gen-type": "npx supabase gen types typescript --project-id fdlwfchqcdwbmvegltct > database.type.ts"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/lib-storage": "^3.515.0",
"@hookform/resolvers": "^3.3.1",
"@slack/bolt": "^3.17.1",
"@slack/web-api": "^7.0.2",
"@vercel/analytics": "^1.1.2",
"axios": "^0.27.2",
"busboy": "^1.6.0",
"class-transformer": "^0.5.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.9",
"es-hangul": "^2.3.8",
"jose": "^5.2.0",
"jsonwebtoken": "^9.0.2",
"leven": "^4.0.0",
"lodash-es": "^4.17.21",
"lru-cache": "^10.0.1",
"next": "14.1.0",
"pg": "^8.11.3",
"postcss-100vh-fix": "^1.0.2",
"qs": "^6.11.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga": "^3.3.1",
"react-hook-form": "^7.46.1",
"react-query": "3.39.2",
"react-quill": "^2.0.0",
"react-toastify": "^9.0.8",
"redis": "^5.12.1",
"reflect-metadata": "^0.2.1",
"swagger-ui-react": "^5.32.1",
"tailwind-scrollbar-hide": "^1.1.7",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0",
"uuid": "^9.0.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/busboy": "^1.5.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash-es": "^4.17.9",
"@types/node": "18.6.4",
"@types/qs": "^6.9.7",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"autoprefixer": "^10.4.8",
"blurhash": "^2.0.5",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"node-fetch": "^3.3.2",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sharp": "^0.32.5",
"tailwindcss": "^3.1.8",
"typescript": "^5.0.0",
"vitest": "1.6.1"
}
}