-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·96 lines (96 loc) · 3.68 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
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": "rdepot-client",
"version": "2.4.1",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"lint:vue": "eslint . --ext .vue --fix --ignore-path .gitignore",
"lint:check": "eslint-output --ignore-path .gitignore --max-warnings 0",
"lint:staged": "eslint --fix $(git diff --diff-filter=d --cached --name-only)",
"license:check": "node ./license_checker.js",
"test:setup": "sh test.sh && npm run restore",
"test:cleanup": "sh cleanup.sh",
"test:unit": "vitest --dir ./src/__tests__/unit",
"test:unit:once": "vitest run --dir ./src/__tests__/unit",
"test:unit:once:junit": "vitest --dir ./src/__tests__/unit --reporter=junit --outputFile.junit=reports/test-report-unit.xml --reporter=default run",
"test:unit:ui": "vitest --ui --dir ./src/__tests__/unit --sequence.concurrent",
"test:integration": "vitest --dir ./src/__tests__/integration --no-file-parallelism",
"test:integration:once": "vitest run --dir ./src/__tests__/integration --no-file-parallelism",
"test:integration:once:junit": "npm run restore && vitest --dir ./src/__tests__/integration --reporter=junit --outputFile.junit=reports/test-report-integration.xml --reporter=default run --no-file-parallelism",
"test:integration:ui": "npm run restore && vitest --ui --sequence.concurrent=false --dir ./src/__tests__/integration --no-file-parallelism",
"test:coverage": "vitest run --coverage",
"execute": "npm run license:check && npm run test:unit:once && npm run build",
"prettier": "npx pretty-quick",
"prettier:changes": "npx pretty-quick --staged --bail",
"json:sort": "jsonsort ./src/locales/*",
"prepare": "husky install",
"restore": "./docker/restore.sh"
},
"dependencies": {
"@casl/ability": "^6.4.0",
"@casl/vue": "^2.2.1",
"@mdi/font": "7.0.96",
"@types/marked": "^5.0.1",
"@vee-validate/zod": "^4.8.6",
"@vueuse/components": "^9.13.0",
"@vueuse/core": "^9.13.0",
"axios": "^1.2.2",
"child_process": "^1.0.2",
"json-sort-cli": "^1.15.1",
"latest": "^0.2.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"marked": "^5.1.1",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"oidc-client-ts": "^2.2.4",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.1",
"rfc6902": "^5.0.1",
"roboto-fontface": "*",
"selenium-webdriver": "^4.21.0",
"vee-validate": "^4.11.7",
"vite": "^5.4.8",
"vue": "^3.2.38",
"vue-dompurify-html": "^4.1.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.0",
"vue3-toastify": "^0.1.14",
"vuetify": "^3.6.11",
"wait-for-expect": "^3.0.2",
"webfontloader": "^1.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@pinia/testing": "^0.0.16",
"@rollup/rollup-linux-x64-gnu": "^4.22.5",
"@testing-library/vue": "^6.6.1",
"@types/node": "^18.11.9",
"@types/webfontloader": "^1.6.35",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-c8": "0.28.3",
"@vitest/ui": "^2.1.1",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-output": "^3.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.26.0",
"flush-promises": "^1.0.2",
"husky": "^8.0.3",
"jsdom": "^21.0.0",
"msw": "^2.0.11",
"pre-commit": "^1.2.2",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"sass": "^1.57.1",
"typescript": "^4.0.0",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^2.1.1",
"vue-tsc": "^1.8.27"
}
}