-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "@aam/monorepo",
"version": "0.1.0",
"private": true,
"description": "Agent Package Manager - Nx Monorepo",
"license": "Apache-2.0",
"scripts": {
"cli": "nx run aam-cli:run",
"cli:build": "nx run aam-cli:build",
"cli:test": "nx run aam-cli:test",
"cli:lint": "nx run aam-cli:lint",
"backend": "nx run aam-backend:serve",
"backend:build": "nx run aam-backend:build",
"backend:test": "nx run aam-backend:test",
"backend:lint": "nx run aam-backend:lint",
"web": "nx run aam-web:serve",
"web:build": "nx run aam-web:build",
"web:test": "nx run aam-web:test",
"web:lint": "nx run aam-web:lint",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"lint": "nx run-many -t lint",
"format": "nx format:write",
"format:check": "nx format:check",
"graph": "nx graph",
"affected": "nx affected",
"affected:build": "nx affected -t build",
"affected:test": "nx affected -t test",
"docs": "nx run aam-docs:serve",
"docs:build": "nx run aam-docs:build",
"docs:deploy": "nx run aam-docs:deploy",
"docs:deploy:gcp": "nx run aam-docs:deploy:gcp",
"docs:install": "nx run aam-docs:install"
},
"devDependencies": {
"@nx/eslint": "^20.0.0",
"@nx/eslint-plugin": "^20.0.0",
"@nx/js": "^20.0.0",
"@nx/react": "^20.0.0",
"@nx/vite": "^20.0.0",
"@nx/web": "^20.0.0",
"@nx/workspace": "^20.0.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"nx": "^20.0.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.54.0",
"vite": "^6.0.0"
},
"dependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^7.0.0"
},
"workspaces": [
"apps/*",
"libs/*"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.0.0"
}