-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "vite-vue-ts-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"postbuild": "export CACHE_ID=$(echo $RANDOM | md5sum | head -c 20); /usr/bin/envsubst '$CACHE_ID' < public/serviceworker.js > dist/serviceworker.js;",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"dependencies": {
"@vueuse/core": "^9.3.0",
"@zxing/library": "^0.19.1",
"axios": "^0.27.2",
"bootstrap": "^4.6.2",
"jquery": "^3.6.1",
"pinia": "^2.0.23",
"vue": "^3.2.25",
"vue-inline-svg": "^2.1.0",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@types/bootstrap": "^4.6.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.5.1",
"gzipper": "^7.1.0",
"prettier": "2.7.1",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^0.34.7"
}
}