-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "hazmatrix",
"version": "0.0.1",
"private": true,
"scripts": {
"serve": "npx vite --port 8080",
"serve:localnetwork": "npx vite --port 8080 --host",
"lint": "npx eslint ./src/ --ext .vue,.js,.ts,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.vue\"",
"preview": "npx vite preview --port 8080",
"typecheck": "npx vue-tsc --noEmit",
"build": "npx vite build",
"build:delete": "npx rimraf ./dist",
"build:full": "npm run typecheck && npm run build:delete && npm run build",
"deploy": "npx gh-pages -d dist"
},
"dependencies": {
"bulma": "^0.9.4",
"fuse.js": "^6.6.2",
"qrcode": "^1.5.1",
"vue": "^3.2.41",
"vue-qrcode-reader": "3.1.0-vue3-compatibility.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.11.9",
"@types/qrcode": "^1.5.0",
"@vitejs/plugin-basic-ssl": "^0.1.2",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.7.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vite-plugin-pwa": "^0.13.2",
"vue-tsc": "^1.0.9"
}
}