-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "sangbok",
"version": "1.2.0-beta10",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint --ext .js,.ts,.jsx,.tsx,.vue --ignore-path .gitignore --fix src",
"lint-fix": "eslint --ext .js,.ts,.jsx,.tsx,.vue --ignore-path .gitignore --fix src",
"lint-check": "eslint --ext .js,.ts,.jsx,.tsx,.vue --ignore-path .gitignore src",
"lint-check-strict": "eslint --ext .js,.ts,.jsx,.tsx,.vue --ignore-path .gitignore --max-warnings 0 src",
"serve": "vite preview",
"start": "vite preview",
"test": "vitest"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.6.5",
"fuse.js": "^6.0",
"jszip": "^3.0",
"qrcode": "^1.5",
"register-service-worker": "^1.7.2",
"vue": "^3.4.10",
"vue-router": "^4.0.0",
"vue3-touch-events": "^4.1.0",
"vuex": "^4.0",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@types/qrcode": "1.x",
"@typescript-eslint/eslint-plugin": "5.x",
"@typescript-eslint/parser": "5.x",
"@vitejs/plugin-vue": "5.x",
"@vitejs/plugin-vue-jsx": "3.x",
"@vitest/coverage-v8": "^1.3.1",
"@vue/eslint-config-standard": "8.x",
"@vue/eslint-config-typescript": "11.x",
"@vue/test-utils": "^2.4.1",
"eslint": "8.x",
"eslint-plugin-import": "^2.0",
"eslint-plugin-node": "^11.0",
"eslint-plugin-promise": "^6.0",
"eslint-plugin-vue": "^9.0",
"jsdom": "^24.0.0",
"sass": "^1.74.1",
"vite": "^5.1.3",
"vitest": "^1.3.1",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"browserslist": [
"> 1%",
"last 5 versions",
"not dead"
]
}