forked from helixsoftco/vuelix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.76 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
{
"name": "vuelix",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "npm run gen-api && vue-tsc --noEmit && vite build",
"serve": "vite preview",
"type-check": "vue-tsc --noEmit",
"eslint": "npx eslint --ignore-path .prettierignore --ext .ts,.js,.vue .",
"eslint-fix": "npx eslint --ignore-path .prettierignore --ext .ts,.js,.vue --fix .",
"prettier": "npx prettier --write .",
"prettier-check": "npx prettier --check .",
"vue-i18n-extract": "npx vue-i18n-extract",
"vue-i18n-extract-remove": "npx vue-i18n-extract --remove",
"gen-api": "rm -rf src/api-client && npx @openapitools/openapi-generator-cli generate -i ./spec/schema.yml -g typescript-axios -o src/api-client --additional-properties withSeparateModelsAndApi=true,supportsES6=true,useSingleRequestParameter=true,apiPackage=api,modelPackage=models"
},
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"vue": "^3.2.16",
"vue-i18n": "^9.2.0-beta.22",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@iconify-json/mdi": "^1.0.10",
"@openapitools/openapi-generator-cli": "^2.4.18",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^1.9.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"typescript": "^4.4.3",
"unplugin-icons": "^0.12.18",
"unplugin-vue-components": "^0.17.2",
"vite": "^2.6.4",
"vite-plugin-pages": "^0.19.0-beta.3",
"vite-plugin-vue-layouts": "^0.5.0",
"vue-eslint-parser": "^8.0.1",
"vue-i18n-extract": "^2.0.4",
"vue-tsc": "^0.3.0"
}
}