-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.27 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.27 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
89
90
91
{
"name": "latex",
"version": "0.1.0",
"private": true,
"scripts": {
"devbuild": "next build && next dev --turbopack -p 3000",
"dev": "next dev --turbopack -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:es": "pnpm exec eslint",
"db:push": "drizzle-kit push --config ./drizzle.config.ts",
"db:push:force": "drizzle-kit push --force --config ./drizzle.config.ts",
"cdk:install": "pnpm --dir infra/cdk install",
"cdk:bootstrap:dev": "./scripts/infra/bootstrap-cdk.sh dev",
"cdk:bootstrap:prod": "./scripts/infra/bootstrap-cdk.sh prod",
"infra:image:push:dev": "./scripts/infra/build-and-push-image.sh dev",
"infra:image:push:prod": "./scripts/infra/build-and-push-image.sh prod",
"infra:deploy:dev": "bash ./scripts/infra/deploy-app.sh dev",
"infra:deploy:prod": "bash ./scripts/infra/deploy-app.sh prod"
},
"dependencies": {
"@aws-sdk/client-cost-explorer": "^3.996.0",
"@aws-sdk/client-dynamodb": "^3.969.0",
"@aws-sdk/client-s3": "^3.986.0",
"@aws-sdk/client-secrets-manager": "^3.954.0",
"@aws-sdk/client-ssm": "^3.968.0",
"@aws-sdk/credential-providers": "^3.969.0",
"@aws-sdk/s3-request-presigner": "^3.986.0",
"@energiz3r/icon-library": "^0.0.6",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@neondatabase/serverless": "^1.0.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@stripe/react-stripe-js": "^5.3.0",
"@stripe/stripe-js": "^8.4.0",
"@tanstack/react-form": "^1.23.5",
"@tanstack/react-query": "^5.90.2",
"@tanstack/zod-adapter": "^1.132.41",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.544.0",
"mammoth": "^1.11.0",
"next": "^15.5.10",
"next-auth": "^4.24.11",
"postgres": "^3.4.7",
"react": "19.2.0",
"react-day-picker": "^9.11.3",
"react-dom": "19.2.0",
"react-hook-form": "^7.64.0",
"react-markdown": "^10.1.0",
"remark": "^15.0.1",
"resend": "^6.9.3",
"sharp": "^0.33.5",
"strip-markdown": "^6.0.0",
"stripe": "^19.3.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.14",
"@tanstack/eslint-plugin-query": "^5.91.0",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"eslint": "^9.37.0",
"eslint-config-next": "^16.1.6",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706"
}