-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "nginx-declarative-api-webui",
"version": "1.0.0",
"description": "Web UI for NGINX Declarative API v5.5",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\""
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@rjsf/core": "6.4.1",
"@rjsf/utils": "6.4.1",
"@rjsf/validator-ajv8": "6.4.1",
"@types/trusted-types": "2.0.7",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.13.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"jsdom": "^29.0.1",
"prettier": "^3.2.4",
"typescript": "^5.9.3",
"vite": "^8.0.2",
"vitest": "^4.1.1"
},
"overrides": {
"dompurify": "^3.3.3",
"flatted": "^3.4.2"
}
}