-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.76 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.76 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
{
"name": "vps-web-root",
"version": "0.0.0",
"license": "see license in license.md",
"scripts": {
"start": "nx serve vps-web",
"dev": "nx serve vps-web",
"startapi": "nx serve vps-api",
"build": "nx build vps-web",
"build-all": "nx run-many --all --target=build --skip-nx-cache",
"test": "nx run-many --all --target=test",
"graph": "nx graph",
"playwright": "nx e2e vps-web",
"reset": "nx reset",
"version": "lerna version --no-private"
},
"private": true,
"dependencies": {
"@babel/core": "7.21.5",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.5",
"@babel/standalone": "7.21.7",
"@devhelpr/expression-compiler": "^0.0.38",
"@devhelpr/markup-compiler": "^0.0.16",
"@shoelace-style/shoelace": "2.19.1",
"@xenova/transformers": "^2.17.2",
"bezier-js": "6.1.4",
"core-js": "^3.6.5",
"d3": "^7.9.0",
"isomorphic-fetch": "^3.0.0",
"mermaid": "^11.4.1",
"monaco-editor": "^0.49.0",
"regenerator-runtime": "0.13.7",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nx/cypress": "21.6.5",
"@nx/devkit": "21.6.5",
"@nx/eslint": "21.6.5",
"@nx/eslint-plugin": "21.6.5",
"@nx/js": "21.6.5",
"@nx/playwright": "21.6.5",
"@nx/react": "21.6.5",
"@nx/vite": "21.6.5",
"@nx/web": "21.6.5",
"@nx/workspace": "21.6.5",
"@playwright/test": "^1.36.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/bezier-js": "^4.1.0",
"@types/node": "^24.8.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.13",
"cypress": "14.5.4",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-playwright": "^0.15.3",
"jiti": "2.4.2",
"jsdom": "22.1.0",
"lerna": "8.1.3",
"nx": "21.6.5",
"postcss": "8.4.38",
"prettier": "^2.6.2",
"tailwindcss": "3.4.3",
"typescript": "5.9.3",
"verdaccio": "6.2.0",
"vite": "7.1.9",
"vite-plugin-dts": "4.5.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.0.0"
},
"nx": {
"includedScripts": []
},
"optionalDependencies": {
"@esbuild/win32-x64": "0.24.0",
"@nx/nx-darwin-arm64": "18.1.2",
"@nx/nx-darwin-x64": "18.1.2",
"@nx/nx-linux-x64-gnu": "18.1.2",
"@nx/nx-win32-x64-msvc": "18.1.2",
"@rollup/rollup-darwin-x64": "4.13.0",
"@rollup/rollup-darwin-x64-arm64": "4.13.0",
"@rollup/rollup-linux-x64-gnu": "4.13.0",
"@rollup/rollup-win32-x64-msvc": "4.13.0"
},
"workspaces": [
"libs/*"
]
}