-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.88 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
{
"name": "my-todo-app",
"version": "0.1.0",
"type": "module",
"blocksTemplate": "default",
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"aws-blocks"
],
"scripts": {
"typecheck": "tsc --noEmit",
"spec": "blocks-generate-spec",
"dev:server": "tsx watch aws-blocks/scripts/server.ts",
"dev": "tsx watch aws-blocks/scripts/server.ts",
"sandbox": "tsx aws-blocks/scripts/sandbox.ts",
"sandbox:destroy": "tsx -C cdk aws-blocks/scripts/sandbox-destroy.ts",
"sandbox:console": "tsx aws-blocks/scripts/console.ts",
"cleanup": "tsx aws-blocks/scripts/cleanup.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "tsx aws-blocks/scripts/deploy.ts",
"destroy": "tsx aws-blocks/scripts/destroy.ts",
"test:e2e": "tsx -C browser test/e2e.test.ts",
"vendorize": "blocks-vendorize",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@analogjs/vite-plugin-angular": "^2.6.2",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"@aws-blocks/blocks": "*",
"@testing-library/jest-dom": "^6.9.1",
"lit-html": "^3.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"vite-tsconfig-paths": "^6.1.1",
"zod": "^4.3.0"
},
"devDependencies": {
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/platform-browser-dynamic": "^22.0.4",
"@types/node": "^20.19.43",
"@vitest/ui": "^4.1.9",
"aws-cdk-lib": "^2.257.0",
"constructs": "^10.6.0",
"esbuild": "^0.27.1",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"tsx": "^4.7.0",
"typescript": "~6.0.2",
"vite": "^6.4.3",
"vitest": "^4.0.8"
},
"blocksTemplateVersion": "0.1.0"
}