-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.66 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
{
"name": "drill",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "supabase start",
"stop": "supabase stop",
"generate": "kysely-codegen --dialect=postgres --camel-case --env-file .env.local",
"generate-deploy": "kysely-codegen --dialect=postgres --camel-case",
"new": "rm -rf node_modules && yarn cache clean && yarn install && yarn generate",
"nuke": "yarn install && supabase db reset && supabase start && supabase status && yarn generate",
"create-migration": "supabase db diff --use-migra -f local_schema",
"ngrok": "ngrok http --domain=romantic-pig-living.ngrok-free.app 3000",
"ngrok:server": "ngrok http --domain=romantic-pig-living.ngrok-free.app 54321",
"dev": "next dev --turbopack",
"devnet": "netlify dev",
"build-dev": "netlify build --context=development",
"build-branch": "netlify build --context=branch-deploy",
"build-staging": "netlify build --context=staging",
"build-prod": "netlify build --context=production",
"functions-run": "supabase functions serve --env-file ./supabase/.env.local --no-verify-jwt",
"functions-deploy": "supabase functions deploy --project-ref fororflyhxeircqexslh",
"functions-set-secret": "supabase secrets set --env-file ./supabase/.env.prod --project-ref fororflyhxeircqexslh",
"lint": "yarn run js-lint && yarn run style-lint && yarn run type-check",
"fix": "yarn run fix-js-lint && yarn run fix-style-lint",
"fix-js-lint": "eslint -c config/.eslintrc.yml --fix '*.ts' '**/*.tsx' -f table",
"js-lint-src": "eslint -c config/.eslintrc.yml '*.ts' '**/*.tsx' -f table",
"js-lint-tests": "eslint -c config/.eslintrc.yml 'tests/**/*.ts' 'tests/**/*.tsx' -f table",
"fix-js-lint-tests": "eslint -c config/.eslintrc.yml --fix 'tests/**/*.ts' 'tests/**/*.tsx' -f table",
"js-lint": "yarn run js-lint-src && yarn run js-lint-tests",
"fix-style-lint": "stylelint '**/*.css' --fix",
"type-check": "tsc --noEmit",
"type-coverage": "type-coverage",
"test": "jest",
"test:watch": "jest --watch",
"seed": "npx tsx seed.ts > supabase/seed.sql",
"seedsync": "npx @snaplet/seed sync"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "2.45.6",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-table": "^8.20.5",
"audiobuffer-to-wav": "^1.0.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"fast-xml-parser": "^4.5.0",
"jest-environment-jsdom": "^29.7.0",
"kysely": "^0.27.3",
"kysely-codegen": "^0.16.0",
"lucide-react": "^0.453.0",
"next": "^15.0.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"pg": "^8.13.1",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-hook-form": "^7.53.1",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.7",
"react-use": "^17.5.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@snaplet/copycat": "^5.1.0",
"@snaplet/seed": "^0.98.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/audiobuffer-to-wav": "^1",
"@types/bcryptjs": "^2",
"@types/jest": "^29.5.14",
"@types/next-pwa": "^5.6.9",
"@types/node": "^20",
"@types/pg": "^8",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jest": "^29.7.0",
"netlify-cli": "^17.37.2",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5"
},
"packageManager": "[email protected]"
}