-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.14 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
{
"name": "plana",
"version": "1.2.3",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build:test": "vue-tsc --noEmit && NODE_ENV=development vite build --mode deploy_test",
"build:preprod": "vue-tsc --noEmit && NODE_ENV=production vite build --mode deploy_pprd",
"build:prod": "vue-tsc --noEmit && NODE_ENV=production vite build --mode deploy_prod",
"build:demo": "vue-tsc --noEmit && NODE_ENV=production vite build --mode deploy_demo",
"lint": "eslint . --ext .vue,.ts,.js,.json --fix --ignore-path .gitignore",
"opalint": "eslint . --ext .vue,.ts,.js,.json --fix --ignore-path .gitignore && echo '\\033[0;32mgropif\\033[0;32m'",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:unit:coverage": "vitest --environment jsdom --coverage",
"test:unit:ui": "vitest --environment jsdom --ui",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"prepare": "husky"
},
"dependencies": {
"@quasar/extras": "^1.16.12",
"@sentry/vue": "^8.33.0",
"@vue-unistra/cas-authentication": "^2.2.1",
"axios": "^1.7.7",
"bootstrap-icons": "^1.11.3",
"pinia": "^2.2.4",
"quasar": "^2.17.0",
"sass": "~1.71.1",
"vue": "^3.5.10",
"vue-i18n": "^9.14.1",
"vue-matomo": "^4.2.0",
"vue-router": "^4.4.5",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@pinia/testing": "^0.1.6",
"@quasar/vite-plugin": "^1.6.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.7.4",
"@types/zxcvbn": "^4.4.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"eslint": "8.56.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
}
}