-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "ui",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"cdk-test": "jest src/aws",
"cdk": "cdk",
"generate-migration": "npx drizzle-kit generate:pg --config src/aws/backend/db/config.ts",
"migrate": "npx ts-node src/aws/backend/db/migrate.ts",
"db-push": "npx drizzle-kit push:pg --config src/aws/backend/db/config.ts",
"db-studio": "npx drizzle-kit studio --config src/aws/backend/db/config.ts --port 5000",
"test-query": "npx ts-node src/aws/backend/db/query.ts",
"fmt": "npx prettier --write . --plugin=prettier-plugin-astro",
"fmt:check": "npx prettier --check . --plugin=prettier-plugin-astro",
"lint": "npx eslint . --fix",
"lint:check": "npx eslint ."
},
"dependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/preact": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/ts-plugin": "^1.3.1",
"@astrojs/vercel": "^5.2.0",
"@aws-sdk/client-sqs": "^3.414.0",
"@lucia-auth/adapter-postgresql": "^2.0.2",
"@lucia-auth/oauth": "^3.5.0",
"@types/source-map-support": "^0.5.7",
"@upstash/ratelimit": "^1.0.0",
"@upstash/redis": "^1.25.1",
"@vercel/analytics": "^1.1.1",
"astro": "^3.0.7",
"aws-cdk-lib": "2.94.0",
"constructs": "^10.0.0",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "^0.28.5",
"lucia": "^2.7.4",
"pg": "^8.11.3",
"postgres": "^3.3.5",
"preact": "^10.6.5",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.3",
"uuid": "^9.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.4",
"@types/node": "20.5.7",
"@types/pg": "^8.10.2",
"@types/uuid": "^9.0.4",
"@types/xml2js": "^0.4.12",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"aws-cdk": "2.94.0",
"drizzle-kit": "^0.19.13",
"eslint": "^8.49.0",
"jest": "^29.6.4",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}