-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 922 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 922 Bytes
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
{
"name": "ierik-github-io",
"version": "2.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite serve --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build"
},
"dependencies": {
"overlayscrollbars": "^2.11.5",
"overlayscrollbars-vue": "^0.5.9",
"vue": "^3.5.18",
"vue-i18n": "^11.1.11",
"vue-router": "^4.5.1"
},
"env": {
"PORT": 3000,
"WS": 3001,
"HOST": "0.0.0.0"
},
"devDependencies": {
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"debug": "^4.4.1",
"npm-run-all2": "^8.0.4",
"sass-embedded": "^1.90.0",
"svgo": "^4.0.0",
"typescript": "~5.8.0",
"vite": "^7.0.6",
"vite-plugin-vue-devtools": "^8.0.3",
"vue-tsc": "^3.0.4"
}
}