This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
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.1 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",
"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}\"",
"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.13.0",
"npm": "9.4.0"
},
"dependencies": {
"@vuepic/vue-datepicker": "3.6.7",
"axios": "1.3.2",
"cron-validate": "1.4.5",
"dayjs": "1.11.9",
"jsdom": "21.1.0",
"keycloak-js": "20.0.3",
"licensee": "10.0.0",
"normalize.css": "8.0.1",
"pg": "8.9.0",
"pinia": "2.0.30",
"primeicons": "5.0.0",
"primevue": "3.17.0",
"quill": "^1.3.7",
"starwars-names": "1.6.0",
"vue": "3.2.47",
"vue-i18n": "9.2.2",
"vue-router": "4.1.6"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@headlessui/vue": "1.7.14",
"@heroicons/vue": "1.0.6",
"@intlify/vite-plugin-vue-i18n": "7.0.0",
"@openapitools/openapi-generator-cli": "2.6.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.9",
"@testing-library/vue": "7.0.0",
"@types/node": "18.11.19",
"@types/starwars-names": "1.6.0",
"@types/tailwindcss": "3.0.11",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"@vitejs/plugin-vue": "3.2.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.3",
"@vue/test-utils": "2.2.10",
"autoprefixer": "10.4.14",
"babel-loader": "9.1.3",
"eslint": "8.33.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.9.0",
"postcss": "8.4.25",
"postcss-css-variables": "0.18.0",
"postcss-import": "15.1.0",
"postcss-nested": "6.0.1",
"postcss-nesting": "11.1.0",
"postcss-simple-vars": "7.0.1",
"prettier": "2.8.3",
"prettier-plugin-svelte": "2.9.0",
"prettier-plugin-tailwindcss": "0.2.2",
"tailwindcss": "3.2.4",
"typescript": "4.9.5",
"vite": "3.2.7",
"vitest": "0.28.4",
"vue-loader": "17.0.1",
"vue-tsc": "1.0.24"
}
}