generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.52 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
{
"name": "wjh-rechner",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:analyze": "vite build --mode analyze",
"build:clean": "rimraf dist",
"build:with-coverage": "cross-env VITE_COVERAGE=true npm run build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"coverage:ci": "vitest run --coverage --reporter=junit --outputFile.junit=coverage/junit.xml",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:dev-open": "concurrently --kill-others --names server,cypress --success command-cypress \"cross-env VITE_COVERAGE=true npm run dev\" \"npm run cypress:open\"",
"cypress:run-ci": "concurrently --kill-others --names server,cypress --success command-cypress \"cross-env VITE_COVERAGE=true npm run preview\" \"npm run cypress:run\""
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@mdi/font": "^7.4.47",
"@tanstack/vue-query": "^5.24.1",
"pinia": "^2.1.7",
"uuid": "^10.0.0",
"vue": "^3.4.20",
"vue-i18n": "^9.9.1",
"vuetify": "^3.5.6"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@cypress/code-coverage": "^3.10.7",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.7.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.20",
"@types/uuid": "^10.0.0",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-vue": "^5.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.7.0",
"browserslist-to-esbuild": "^2.1.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^13.6.6",
"cypress-multi-reporters": "^1.6.3",
"cypress-vite": "^1.4.2",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.0.0",
"eslint-plugin-vue": "^9.22.0",
"eslint-plugin-vuetify": "^2.1.1",
"jsdom": "^24.0.0",
"mocha-junit-reporter": "^2.2.1",
"npm-run-all2": "^6.0.0",
"prettier": "^3.2.5",
"start-server-and-test": "^2.0.3",
"typescript": "~5.6.0",
"vite": "^5.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-istanbul": "^6.0.0",
"vite-plugin-vuetify": "^2.0.1",
"vitest": "^2.0.0",
"vue-tsc": "^2.0.0"
}
}