forked from MORE-Platform/more-studymanager-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "more-studymanager-frontend",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:local": "VITE_LOCAL_BACKEND=true vite",
"package:quick": "npm run generate:api && vite build",
"package": "npm run generate:api && vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prettier": "prettier --config .prettierrc --write \"src/**/*.{ts,vue,json}\" \"tests/**/*.ts\"",
"lint": "eslint --ext .ts,vue,js --ignore-path .gitignore . --max-warnings=0",
"lint:fix": "eslint --ext .ts,vue,js --ignore-path .gitignore . --fix",
"coverage": "vitest --environment jsdom --coverage",
"test:unit": "vitest --environment jsdom",
"test:unit:once": "vitest --environment jsdom run --outputFile.junit=target/testResults.xml --reporter=junit --reporter=default",
"generate:api": "openapi-generator-cli generate -i ./openapi/StudyManagerAPI.yaml -g typescript-axios -o src/generated-sources/openapi --additional-properties=supportsES6=true,withSeparateModelsAndApi=true,withInterfaces=true,apiPackage=api,modelPackage=models --type-mappings=set=Array --custom-generator=./openapi/openapi.generator-6.2.0.jar",
"license:check": "licensee --production --errors-only",
"license:list": "licensee --production || true"
},
"engines": {
"node": "18.18.0",
"npm": "9.8.1"
},
"dependencies": {
"@vuepic/vue-datepicker": "8.6.0",
"axios": "1.7.1",
"cron-validate": "1.4.5",
"keycloak-js": "24.0.4",
"normalize.css": "8.0.1",
"pg": "8.11.5",
"pinia": "2.1.7",
"primeicons": "5.0.0",
"primevue": "3.46.0",
"quill": "^2.0.2",
"starwars-names": "1.6.0",
"vue": "3.4.27",
"vue-cal": "^4.8.1",
"vue-i18n": "9.13.1",
"vue-router": "4.3.2"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@headlessui/vue": "1.7.22",
"@heroicons/vue": "2.1.3",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@openapitools/openapi-generator-cli": "2.13.4",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.13",
"@testing-library/vue": "8.1.0",
"@types/node": "20.12.12",
"@types/starwars-names": "1.6.2",
"@types/tailwindcss": "3.0.11",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"@vitejs/plugin-vue": "5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"autoprefixer": "10.4.19",
"babel-loader": "9.1.3",
"eslint": "8.56.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-vue": "9.26.0",
"jsdom": "^24.1.0",
"licensee": "10.0.0",
"postcss": "8.4.38",
"postcss-css-variables": "0.19.0",
"postcss-import": "16.1.0",
"postcss-nested": "6.0.1",
"postcss-nesting": "12.1.4",
"postcss-simple-vars": "7.0.1",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.3",
"prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0",
"vue-loader": "17.4.2",
"vue-tsc": "2.0.19"
}
}