-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "web-reader",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,vue,md,json}'"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.less": "stylelint --syntax less",
"**/*.{js,jsx,ts,tsx}": "yarn run lint",
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@iconify-json/ant-design": "^1.1.5",
"@iconify-json/ep": "^1.1.9",
"@types/uuid": "^9.0.0",
"@vue/runtime-core": "^3.2.47",
"element-plus": "^2.2.29",
"epubjs": "^0.3.93",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"pinia": "^2.0.30",
"pinia-plugin-persistedstate": "^3.0.2",
"screenfull": "^6.0.2",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-router": "4"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.9.0",
"lint-staged": "^13.1.0",
"node-sass": "^8.0.0",
"prettier": "2.8.3",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.13.0",
"unplugin-icons": "^0.15.2",
"unplugin-vue-components": "^0.23.0",
"vite": "^4.1.0",
"vue-tsc": "^1.0.24",
"yorkie": "^2.0.0"
}
}