-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "travel-fun",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --port 3333 --open",
"start": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint './src/**/*.{ts,vue}' --cache .",
"lint:fix": "pnpm run lint --fix --ignore-path .gitignore"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^38.1.1",
"@ckeditor/ckeditor5-vue": "^5.1.0",
"@popperjs/core": "^2.11.8",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@vicons/antd": "^0.12.0",
"@vicons/material": "^0.12.0",
"@voomap/core": "0.0.1-beta.25",
"@voomap/map": "0.0.1-beta.25",
"axios": "^1.6.2",
"naive-ui": "^2.36.0",
"pinia": "^2.1.7",
"sweetalert2": "^11.10.1",
"swiper": "^9.4.1",
"uuid": "^9.0.1",
"vfonts": "^0.0.3",
"vue": "^3.3.13",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.4",
"@types/google.maps": "^3.54.10",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.16",
"lint-staged": "^14.0.1",
"postcss": "^8.4.32",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vue-tsc": "^1.8.26"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}