-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "ocr-pwa",
"version": "0.4.0",
"type": "module",
"scripts": {
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx,.vue --fix",
"format": "prettier --config .prettierrc src/**/*{.ts,.vue} --write",
"stylelint": "stylelint ./src/**/*.{scss,css,less,vue} --fix",
"lint-staged": "lint-staged",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest"
},
"dependencies": {
"stylelint-config-recommended": "12.0.0",
"tesseract.js": "^4.1.2",
"vue": "^3.3.4",
"vue-i18n": "9",
"vue-router": "4"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.4.1",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.15",
"daisyui": "^3.6.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"naive-ui": "^2.34.4",
"postcss": "^8.4.28",
"postcss-html": "^1.5.0",
"prettier": "^3.0.2",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.1.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vfonts": "^0.0.3",
"vite": "^4.4.5",
"vite-plugin-pwa": "^0.16.5",
"vitest": "^0.34.3",
"vue-clipboard3": "^2.0.0",
"vue-tsc": "^1.8.5",
"workbox-window": "^7.0.0"
}
}