-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 Bytes
/
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
{
"name": "where-to-go",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"local": "vite --mode developer_local --port 8080 --host",
"dev": "vite --mode development --port 8080 --host",
"preview": "vite preview",
"build:dev": "vite build --mode development",
"build": "vite build",
"format": "npx prettier . --write",
"lint": "npx eslint ."
},
"dependencies": {
"axios": "^1.7.7",
"better-scroll": "^2.5.1",
"pinia": "^2.2.4",
"swiper": "^11.1.14",
"vue": "3.5.8",
"vue-router": "^4.4.5",
"vuex": "^4.1.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.1.0",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.29.1",
"prettier": "^3.3.3",
"stylus": "^0.64.0",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}