-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.79 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@final-hill/cathedral",
"version": "0.19.0",
"description": "Requirements management system",
"keywords": [],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/final-hill/cathedral.git"
},
"bugs": {
"url": "https://github.com/final-hill/cathedral/issues"
},
"homepage": "https://final-hill.com/cathedral",
"author": "Michael L Haufe <michael.haufe@final-hill.com> (https://final-hill.com)",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"analyze-build": "nuxt analyze",
"build": "nuxt build",
"preview": "nuxt preview",
"generate-pwa-assets": "pwa-assets-generator",
"//generate": "nuxt generate",
"dev": "nuxt dev --no-fork --inspect",
"postinstall": "nuxt prepare",
"typecheck": "nuxi typecheck",
"orm-debug": "mikro-orm-esm debug",
"orm-create-db": "mikro-orm-esm database:create",
"orm-create-migration": "mikro-orm-esm migration:create",
"orm-list-pending-migrations": "mikro-orm-esm migration:pending",
"orm-list-executed-migrations": "mikro-orm-esm migration:list",
"orm-run-pending-migrations": "mikro-orm-esm migration:up",
"orm-rollback-migration": "mikro-orm-esm migration:down",
"orm-seed-users": "mikro-orm-esm seeder:run -c AppUserSeeder",
"test": "vitest"
},
"dependencies": {
"@azure/monitor-opentelemetry": "^1.8.0",
"@azure/openai": "^2.0.0-beta.3",
"@mikro-orm/core": "^6.3.13",
"@mikro-orm/postgresql": "^6.3.13",
"@mikro-orm/reflection": "^6.3.13",
"@mikro-orm/seeder": "^6.3.13",
"@sidebase/nuxt-auth": "^0.9.4",
"@slack/web-api": "^7.7.0",
"@vite-pwa/nuxt": "^0.10.6",
"mermaid": "^11.4.0",
"mitt": "^3.0.1",
"nuxt": "^3.14.0",
"nuxt-primevue": "^3.0.0",
"nuxt-security": "^2.0.0",
"openai": "^4.71.0",
"pg": "^8.13.1",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"uuid": "^11.0.2",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@mikro-orm/cli": "^6.3.13",
"@mikro-orm/migrations": "^6.3.13",
"@nuxt/devtools": "^1.6.0",
"@nuxt/test-utils": "^3.14.4",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^15.9.0",
"playwright-core": "^1.48.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
}
}