forked from Boatly/vue3-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.77 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.77 KB
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
{
"name": "simple-app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"gen-types": "npx openapi-typescript http://localhost:5274/swagger/v1/swagger.json -o src\\typesschema.d.ts",
"nswag-api": "nswag openapi2tsclient /input:http://localhost:5274/swagger/v1/swagger.json /output:./src/api/types.ts /template:Axios /typescriptVersion:4.3 /withCredentials:false /generateOptionalParameters:true /operationGenerationMode:MultipleClientsFromOperationId /typeStyle:Interface /templateDirectory:./.nswag-templates",
"format-api": "prettier -w --loglevel silent ./src/api/types.ts",
"gen-api": "npm run nswag-api && npm run format-api"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.3.4",
"@primevue/themes": "^4.2.4",
"@supabase/supabase-js": "^2.46.2",
"@tanstack/vue-query": "^5.62.0",
"@tanstack/vue-query-devtools": "^5.62.0",
"axios": "^1.7.8",
"primevue": "^4.2.4",
"vue": "^3.5.13",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@primevue/auto-import-resolver": "^4.2.4",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.9.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"npm-run-all2": "^7.0.1",
"nswag": "^14.2.0",
"postcss": "^8.4.49",
"swagger-typescript-api": "^13.0.23",
"tailwindcss": "^3.4.15",
"typescript": "~5.6.3",
"unplugin-auto-import": "^0.18.6",
"unplugin-vue-components": "^0.27.5",
"unplugin-vue-router": "^0.10.8",
"vite": "^6.0.1",
"vite-plugin-vue-devtools": "^7.6.7",
"vue-tsc": "^2.1.10"
}
}