-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.09 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 4.09 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@ids/workshop",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"type": "module",
"scripts": {
"dev:start": "tsx scripts/dev.ts start",
"dev:apis": "tsx scripts/dev.ts apis",
"dev:web": "tsx scripts/dev.ts web",
"dev:doctor": "tsx scripts/dev.ts doctor",
"build:doctor-widget": "nx run @ids-ai-skeleton/astra-dev-doctor:build-widget",
"dev": "tsx scripts/dev.ts",
"dev:full-reset": "tsx scripts/reset-from-scratch.ts",
"docker": "tsx scripts/docker.ts",
"e2e": "tsx scripts/e2e.ts",
"http:api": "tsx scripts/http-test.ts",
"db": "tsx scripts/db.ts",
"build": "tsx scripts/build.ts",
"build:all": "tsx scripts/build.ts all",
"test:all": "nx test client-web && nx test astra-apis",
"test:web": "nx test client-web",
"test:apis": "nx test astra-apis",
"test:delta": "nx affected -t test",
"typecheck": "tsc --build libs/shared/data-models/tsconfig.lib.json && tsc -p libs/shared/data-models/tsconfig.lib.json --noEmit && tsc -p libs/shared/testing-helpers/tsconfig.lib.json --noEmit && tsc -p apps/astra-apis/tsconfig.app.json --noEmit && tsc -p apps/client-web/tsconfig.app.json --noEmit",
"typecheck:apis": "tsc --project apps/astra-apis/tsconfig.app.json --noEmit",
"typecheck:web": "tsc --project apps/client-web/tsconfig.app.json --noEmit",
"lint": "biome check --write .",
"lint:check": "biome check .",
"lint:ci": "biome ci .",
"prepare": "husky",
"playwright:install": "npx playwright install",
"logto": "tsx scripts/logto.ts",
"copy:env": "cp -i .env.example .env"
},
"workspaces": [
"apps/*",
"libs/*",
"libs/shared/*"
],
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@logto/node": "^3.1.6",
"@logto/react": "^4.0.9",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@mui/x-data-grid": "^8.27.5",
"@nestjs/common": "^11.1.8",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.8",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/swagger": "^11.2.5",
"@react-router/node": "^7.2.0",
"@react-router/serve": "^7.2.0",
"@tanstack/react-query": "^5.90.21",
"axios": "^1.13.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"helmet": "^8.1.0",
"i18next": "^25.6.1",
"i18next-browser-languagedetector": "^8.2.0",
"isbot": "^5.1.31",
"jose": "^6.1.0",
"pg": "^8.16.3",
"ravendb": "^7.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"react-i18next": "^16.2.4",
"react-router": "^7.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@marp-team/marp-cli": "^4.2.3",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.8",
"@nx/devkit": "22.3.3",
"@nx/js": "22.3.3",
"@nx/nest": "^22.3.3",
"@nx/node": "22.3.3",
"@nx/playwright": "22.3.3",
"@nx/react": "22.3.3",
"@nx/vite": "22.3.3",
"@nx/web": "22.3.3",
"@nx/webpack": "22.3.3",
"@nx/workspace": "22.3.3",
"@playwright/test": "^1.56.1",
"@react-router/dev": "^7.2.0",
"@swc-node/register": "~1.11.1",
"@swc/cli": "~0.7.8",
"@swc/core": "~1.14.0",
"@swc/helpers": "~0.5.17",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/multer": "^2.1.0",
"@types/node": "24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.0",
"husky": "^9.1.7",
"jiti": "2.6.1",
"jsdom": "^28.0.0",
"standard-version": "^9.5.0",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.0.0",
"typescript": "~5.9.3",
"unplugin-swc": "^1.5.9",
"vite": "^7.1.12",
"vitest": "^3.0.6",
"webpack-cli": "^6.0.1"
}
}