-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "Tools",
"private": true,
"version": "0.8.1",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc && vite build",
"build:android": "vue-tsc && vite build && cp -R ./dist/* ../../pro/distrilog/EasyMobile2.0/www/",
"deploy": "vue-tsc && vite build && python deploy.py",
"preview": "vite preview",
"lint:script": "eslint --ext .ts,vue --ignore-path .gitignore .",
"lint:markup": "vue-tsc --noEmit",
"reset": "rm -rf node_modules package-lock.json"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"axios": "^1.1.3",
"mosha-vue-toastify": "^1.0.23",
"vue": "^3.2.47",
"vue-router": "^4.2.2",
"vuetify": "^3.7.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.19.68",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-pwa": "^0.21.1",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*": "prettier -w -u"
}
}