-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "erp-system",
"version": "0.1.0",
"private": true,
"description": "Kubernetes-based ERP System with microservices architecture",
"license": "UNLICENSED",
"scripts": {
"start": "nx run-many --target=serve --all",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"nx": "nx",
"graph": "nx graph"
},
"devDependencies": {
"@nx/devkit": "^22.6.1",
"@nx/eslint": "^22.6.1",
"@nx/eslint-plugin": "^22.6.1",
"@nx/js": "^22.6.1",
"@nx/react": "^22.6.1",
"@nx/vite": "^22.6.1",
"@nx/web": "^22.6.1",
"@nx/workspace": "^22.6.1",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"nx": "^22.6.1",
"prettier": "^3.2.0",
"typescript": "^5.4.0"
},
"workspaces": [
"apps/*",
"libs/*"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"jszip": "^3.10.1"
}
}