forked from stilleshan/subweb
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 742 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 742 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
{
"name": "subweb",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vite --host 0.0.0.0",
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"lint": "eslint .",
"test": "node --test",
"format:check": "prettier --check . --ignore-path .gitignore",
"check": "npm run format:check && npm run lint && npm test && npm run build"
},
"dependencies": {
"vue": "^3.5.38",
"vue-router": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.7",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"vite": "^8.2.1"
}
}