forked from lookscanned/lookscanned.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.15 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
{
"name": "lookscanned.io",
"version": "0.0.0",
"scripts": {
"serve": "vite preview",
"build": "vite build",
"test:unit": "vitest --environment jsdom",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"build:all": "npm run build:processImage && npm run build:combineImagesToPdf && npm run build",
"build:processImage": "esbuild ./src/utils/makeScanned/worker/processImage.worker.js --bundle --minify --sourcemap --target=chrome58 --outfile=./public/vendors/makeScanned/worker/processImage.worker.js",
"build:combineImagesToPdf": "esbuild ./src/utils/makeScanned/worker/combineImagesToPdf.worker.js --bundle --minify --sourcemap --target=chrome58 --outfile=./public/vendors/makeScanned/worker/combineImagesToPdf.worker.js",
"dev": "vite",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"browser": {
"path": "path-browserify",
"fs": false,
"child_process": false
},
"dependencies": {
"@mdi/font": "5.9.55",
"assert": "^1.5.0",
"magica": "^0.2.17",
"p-map": "^4.0.0",
"path-browserify": "^1.0.1",
"pdfjs-dist": "^2.13.216",
"roboto-fontface": "*",
"vue": "^3.2.31",
"vue-meta": "^3.0.0-alpha.10",
"vue-pdf-embed": "^1.1.1",
"vue-router": "^4.0.14",
"vuetify": "^3.0.0-beta.0",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.26",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/tsconfig": "^0.1.3",
"@vuetify/vite-plugin": "^1.0.0-alpha.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"jsdom": "^19.0.0",
"prettier": "^2.5.1",
"sass": "^1.38.0",
"sass-loader": "^10.0.0",
"typescript": "~4.6.3",
"vite": "^2.9.1",
"vitest": "^0.8.1",
"vue-cli-plugin-vuetify": "~2.4.8",
"vue-tsc": "^0.33.9",
"vuetify-loader": "^2.0.0-alpha.0"
}
}