-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
67
68
69
70
71
72
73
74
{
"name": "cesium-learning",
"private": true,
"version": "1.0.0",
"type": "module",
"author": "Huy <[email protected]>",
"homepage": "https://rayadaschn.github.io/front-end-life",
"keywords": [
"Cesium",
"vue",
"vite"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"fix": "eslint src --fix",
"format": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\"",
"lint:eslint": "eslint src/**/*.{ts,vue} --cache --fix",
"lint:style": "stylelint src/**/*.{css,less,scss,vue,postcss} --cache --fix",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,less,styl,html}": [
"prettier --write"
]
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"element-plus": "^2.7.4",
"gsap": "^3.12.5",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"vite-plugin-cesium": "^1.2.22",
"vue": "^3.4.21",
"vue-router": "^4.3.2",
"cesium": "^1.115.0"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.3",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"typescript": "^5.4.2",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.1.5",
"vue-tsc": "^2.0.6"
}
}