This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.33 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
{
"name": "task-tracker",
"private": true,
"version": "0.0.0",
"author": "David Adamson",
"type": "commonjs",
"scripts": {
"dev": "drizzle-kit push && concurrently --kill-others \"ng serve\" \"tsx watch --ignore 'src/client/**/*' src/main.dev.ts\"",
"check:format": "prettier --ignore-path .gitignore --check .",
"test:unit": "ng test --watch=false --browsers=ChromeHeadless --code-coverage",
"test:e2e": "cypress run --browser chrome",
"build:vercel": "ng build && drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@fontsource-variable/inter": "^5.0.18",
"@fontsource-variable/jetbrains-mono": "^5.0.20",
"@hono/node-server": "^1.11.2",
"@iconify/tailwind": "^1.1.1",
"@libsql/client": "^0.6.2",
"@ts-rest/core": "^3.45.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.31.2",
"hono": "^3.12.12",
"immer": "^10.1.1",
"rxjs": "~7.8.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ts-rest-hono": "^0.5.0",
"tslib": "^2.3.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@angular/cli": "^18.0.3",
"@angular/compiler-cli": "^18.0.0",
"@hono/swagger-ui": "^0.2.2",
"@iconify-json/uil": "^1.1.8",
"@ts-rest/open-api": "^3.45.2",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cypress": "^13.10.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.7",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.4.38",
"prettier": "^3.3.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.10.2",
"typescript": "~5.4.2",
"zone.js": "~0.14.3"
}
}