-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
129 lines (129 loc) · 4.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "community-archive",
"description": "A Twitter Community Archive",
"version": "1.0.0",
"private": true,
"author": "theexgenesis",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"supabase",
"tailwindcss",
"shadcn",
"typescript"
],
"scripts": {
"dev": "set NODE_ENV=development & set NEXT_PUBLIC_USE_REMOTE_DEV_DB=false & next dev",
"dev-as-prod": "set NODE_ENV=production & next dev",
"dev-remote-db": "set NEXT_PUBLIC_USE_REMOTE_DEV_DB=true & next dev",
"dev:importfiles": "tsx --env-file=.env scripts/importFromFilesToDb.ts",
"dev:validateimport": "tsx --env-file=.env scripts/validateDbImport.ts",
"dev:downloadarchive": "tsx --env-file=.env scripts/download_storage_anon.mts",
"dev:testconversationids": "tsx --env-file=.env scripts/testConversationIds.ts",
"build": "set NODE_ENV=production & next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format-check": "prettier --check .",
"type-check": "tsc --pretty --noEmit",
"gen-types": "supabase gen types typescript --project-id fabxmporizzqflnftavs --schema public,dev > src/database-types.ts",
"dev:gen-types": "supabase gen types typescript --local --schema public,dev > src/database-types.ts",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --ci",
"test:server": "jest --selectProjects server --testPathPattern=src/lib-server",
"analyze": "ANALYZE=true pnpm build",
"scratchpad": "ts-node -r tsconfig-paths/register -P ./scratchpad/tsconfig.json",
"script": "tsx",
"gen-api-docs": "curl https://fabxmporizzqflnftavs.supabase.co/rest/v1/ -H \"apikey: $NEXT_PUBLIC_SUPABASE_ANON_KEY\" -H \"Accept: application/openapi+json\" > public/openapi.json"
},
"dependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@scalar/nextjs-api-reference": "^0.4.80",
"@supabase/postgrest-js": "^1.15.8",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.39.3",
"@tanstack/react-query": "^5.17.15",
"@tanstack/react-query-devtools": "^5.17.15",
"@tanstack/react-table": "^8.20.5",
"@tremor/react": "^3.18.3",
"@vercel/analytics": "^1.1.1",
"@zip.js/zip.js": "^2.7.50",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"fp-ts": "^2.16.9",
"geist": "^1.2.0",
"lodash": "^4.17.21",
"lucide-react": "^0.304.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"nextjs-toploader": "^1.6.4",
"react": "18.2.0",
"react-day-picker": "8.10.1",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"recharts": "^2.12.7",
"supabase": "^1.200.3",
"tailwind-merge": "^2.2.0",
"tsx": "^4.19.1",
"undici": "^5.28.2"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "20.3.1",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.5",
"adm-zip": "^0.5.16",
"autoprefixer": "10.4.15",
"csv-parse": "^5.5.6",
"encoding": "^0.1.13",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"msw": "^2.1.1",
"postcss": "8.4.29",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.1",
"typescript": "5.1.3",
"unzipper": "^0.12.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}