-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.11 KB
/
package.json
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
{
"name": "ansible-ui-framework-demo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "vite --open /ansible-ui-framework-demo",
"build": "vite build",
"preview": "vite preview",
"test": "concurrently npm:vitest npm:eslint npm:prettier npm:tsc --kill-others-on-fail --prefix-colors cyan,green,blue,magenta",
"vitest": "vitest --run --silent",
"vitest:ui": "vitest --ui",
"eslint": "eslint --max-warnings=0 src tests",
"eslint:fix": "eslint --fix src tests",
"prettier": "prettier --check src tests",
"prettier:fix": "prettier --write src tests",
"tsc": "tsc --pretty --skipLibCheck -noEmit",
"coverage": "vitest run --coverage",
"upgrade": "npx npm-check-updates --upgrade --target latest --doctor && npm audit fix || true && npm dedup || true",
"docker:build": "docker build --tag app .",
"docker:run": "docker run --rm -p 8080:8080 app",
"i18n": "npx i18next-parser --config i18next-parser.config.cjs"
},
"dependencies": {
"@ansible/ansible-ui-framework": "2.4.1742",
"i18next-http-backend": "^2.5.2",
"monaco-editor": "^0.49.0",
"react-i18next": "^14.1.2",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "14.3.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@vitejs/plugin-react-swc": "3.7.0",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"autoprefixer": "10.4.19",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-plugin-i18next": "6.0.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"fake-indexeddb": "5.0.2",
"happy-dom": "13.10.1",
"i18next-browser-languagedetector": "7.2.1",
"postcss": "8.4.38",
"prettier": "3.3.0",
"tslib": "^2.6.2",
"typescript": "5.4.5",
"vite": "5.2.12",
"vite-plugin-compression": "0.5.1",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-pwa": "0.20.0",
"vitest": "1.6.0"
}
}