forked from tony-xlh/Ionic-Vue-Document-Scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.2 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
63
64
65
66
67
68
{
"name": "DocumentScanner",
"version": "0.0.1",
"private": true,
"description": "An Ionic project",
"vue": {
"pwa": {
"workboxPluginMode": "InjectManifest",
"workboxOptions": {
"swSrc": "./src/service-worker.js",
"maximumFileSizeToCacheInBytes": 1073741824
}
}
},
"scripts": {
"serve": "ncp node_modules/mobile-web-capture/dist public/assets/dwt-resources && vue-cli-service serve",
"build": "ncp node_modules/mobile-web-capture/dist public/assets/dwt-resources && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@awesome-cordova-plugins/android-permissions": "^6.2.0",
"@capacitor/android": "4.6.0",
"@capacitor/app": "4.1.1",
"@capacitor/core": "4.6.0",
"@capacitor/filesystem": "^4.1.4",
"@capacitor/haptics": "4.1.0",
"@capacitor/ios": "4.6.0",
"@capacitor/keyboard": "4.1.0",
"@capacitor/share": "^4.1.0",
"@capacitor/status-bar": "4.1.1",
"@ionic/vue": "^6.0.0",
"@ionic/vue-router": "^6.0.0",
"cordova-plugin-android-permissions": "^1.1.5",
"core-js": "^3.6.5",
"ionicons": "^6.0.3",
"mobile-web-capture": "^17.3.1",
"register-service-worker": "^1.7.2",
"vue": "^3.2.21",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@capacitor/cli": "4.6.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vue/cli-plugin-babel": "~5.0.0-rc.1",
"@vue/cli-plugin-e2e-cypress": "~5.0.0-rc.1",
"@vue/cli-plugin-eslint": "~5.0.0-rc.1",
"@vue/cli-plugin-pwa": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0-rc.1",
"@vue/cli-plugin-typescript": "~5.0.0-rc.1",
"@vue/cli-plugin-unit-jest": "~5.0.0-rc.1",
"@vue/cli-service": "~5.0.0-rc.1",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.0.0-rc.16",
"@vue/vue3-jest": "^27.0.0-alpha.3",
"babel-jest": "^27.3.1",
"cypress": "^8.7.0",
"eslint": "^8.4.1",
"eslint-plugin-vue": "^8.2.0",
"jest": "^27.3.1",
"ncp": "^2.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.3.5"
}
}