-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
49
50
51
52
{
"name": "-checkin-ui",
"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",
"lint": "eslint . --fix --cache",
"lint:nofix": "eslint . --cache",
"format": "prettier --cache --write src/",
"format:nofix": "prettier --cache --check src/",
"gen-api": "tsx ./scripts/generate-apis.ts"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"pinia": "^3.0.4",
"vue": "^3.5.31",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.31.1",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.5.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"msw": "^2.12.14",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.3",
"ts-morph": "^27.0.2",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"vite": "^8.0.5",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.6"
},
"msw": {
"workerDirectory": [
"public"
]
}
}