-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "jomon-ui",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vue-tsc --noEmit && vite build",
"build:watch": "vite build --watch",
"lint": "eslint --fix --cache .",
"lint:nofix": "eslint --cache .",
"type-check": "vue-tsc --noEmit",
"gen-api": "esno ./scripts/generate-apis.ts",
"clean": "rimraf src/lib/apis/generated",
"postinstall": "npm run gen-api",
"format": "prettier --write src"
},
"dependencies": {
"axios": "^1.7.9",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@heroicons/vue": "^2.2.0",
"@openapitools/openapi-generator-cli": "^2.15.3",
"@tailwindcss/typography": "^0.5.15",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.10.3",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.6",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.30.0",
"esno": "^4.8.0",
"execa": "^9.5.2",
"globals": "^15.14.0",
"msw": "^2.7.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"rollup-plugin-brotli": "^3.1.0",
"tailwindcss": "^3.4.17",
"ts-morph": "^25.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vue-tsc": "^2.2.0"
},
"msw": {
"workerDirectory": "public"
}
}