-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.89 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.89 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
{
"name": "podcast-tracker",
"version": "0.1.0",
"private": true,
"description": "Serverless podcast tracker monorepo (Astro frontend, AWS CDK infra, Lambdas).",
"license": "UNLICENSED",
"engines": {
"node": ">=24.10.0",
"npm": ">=11.6.0"
},
"scripts": {
"postinstall": "echo 'Workspaces initialized. Add project-specific install steps as tasks progress.'",
"clean": "rm -rf node_modules **/node_modules",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "vitest",
"lint": "tsc --project tsconfig.json --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --config codegen.ts --watch",
"dev": "npm run --workspace apps/web dev",
"cli:dev": "npm run --workspace apps/cli dev",
"cli:start": "npm run cli:build && npm run --workspace apps/cli start --",
"cli:test": "npm run --workspace apps/cli test",
"cli:test:e2e": "npm run cli:build && npm run --workspace apps/cli test:e2e",
"cli:build": "npm run --workspace apps/cli build",
"cli:verify": "npm run lint && npm run cli:test && npm run cli:build && npm run cli:start -- help",
"cli:verify:e2e": "npm run cli:verify && npm run cli:test:e2e",
"ci:local": "npm run codegen && npm run lint && npm run typecheck && npm run cli:test && npm run cli:build && npm run cli:start -- help && npm run --workspace apps/web build && npm run --workspace infra build",
"test:ci": "vitest run",
"deploy:backend": "npm run --workspace infra cdk:deploy -- --all --require-approval never --profile Personal",
"deploy:web": "bash ./scripts/deploy-web.sh"
},
"workspaces": [
"apps/*",
"packages/*",
"infra"
],
"dependencies": {
"@apollo/client": "^4.0.8",
"@aws-sdk/client-cognito-identity-provider": "^3.958.0",
"@aws-sdk/client-dynamodb": "^3.918.0",
"@aws-sdk/client-lambda": "^3.918.0",
"@aws-sdk/client-ssm": "^3.918.0",
"@aws-sdk/lib-dynamodb": "^3.918.0",
"graphql-ws": "^6.0.6",
"lightningcss": "^1.30.2",
"sanitize-html": "^2.17.0"
},
"devDependencies": {
"@astrojs/node": "^9.5.0",
"@aws-sdk/client-appsync": "^3.918.0",
"@aws-sdk/credential-providers": "^3.918.0",
"@eslint/js": "^9.38.0",
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-operations": "^5.0.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.3",
"@types/node": "^24.9.2",
"@types/sanitize-html": "^2.16.0",
"@vitest/coverage-v8": "^4.0.4",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"graphql": "^16.11.0",
"msw": "^2.11.6",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.4"
}
}