-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 985 Bytes
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
{
"name": "leads-landing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "sst bind next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate:migration": "npx drizzle-kit generate --config drizzle.config.js",
"migrate": "tsx src/app/cli/migrator.js",
"deploy:local": "AWS_PROFILE=sst npx sst deploy --stage production",
"deploy:prod": "npx sst deploy --stage production",
"deploy:stage": "npx sst deploy --stage staging"
},
"dependencies": {
"@neondatabase/serverless": "^0.9.3",
"drizzle-kit": "^0.21.4",
"drizzle-orm": "^0.30.10",
"next": "14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"aws-cdk-lib": "2.142.1",
"aws-sdk": "^2.1628.0",
"constructs": "10.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.38",
"sst": "^2.42.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.11.0"
}
}