-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.82 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@aparajita/capacitor-biometric-auth-demo",
"version": "7.0.2",
"description": "An Ionic/Vue demo of the @aparajita/capacitor-biometric-auth plugin",
"private": true,
"author": "Aparajita Fishman",
"homepage": "https://github.com/aparajita/capacitor-biometric-auth-demo",
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-biometric-auth-demo.git"
},
"scripts": {
"dev": "vite",
"prebuild": "pnpm lint",
"build": "vite build",
"preview": "vite preview --port 1327",
"lint.eslint": "eslint --cache --fix --ext js,mjs,ts,vue .",
"lint.prettier": "prettier --cache --write --list-different .",
"lint.tsc": "vue-tsc --noEmit",
"lint": "pnpm lint.eslint && pnpm lint.prettier && pnpm lint.tsc",
"ios.dev": "ionic cap run ios --open --livereload --external",
"ios.prod": "ionic cap run ios --open",
"android.dev": "ionic cap run android --open --livereload --external",
"android.prod": "ionic cap run android --open",
"ionic:build": "vite build",
"ionic:serve": "vite",
"prerelease": "pnpm build",
"release": "commit-and-tag-version && git push --follow-tags"
},
"dependencies": {
"@aparajita/capacitor-biometric-auth": "^8.0.2",
"@capacitor/android": "^6.1.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.1.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.1.0",
"@capacitor/keyboard": "^6.0.1",
"@capacitor/splash-screen": "^6.0.1",
"@capacitor/status-bar": "^6.0.0",
"@ionic/core": "^8.2.5",
"@ionic/vue": "^8.2.5",
"@ionic/vue-router": "^8.2.5",
"ionicons": "^7.4.0",
"vue": "^3.4.31",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@aparajita/eslint-config-vue": "^1.0.7",
"@aparajita/prettier-config": "^2.0.0",
"@aparajita/tailwind-ionic": "^2.3.0",
"@capacitor/cli": "^6.1.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ionic/cli": "^7.2.0",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.31",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-vue": "^9.27.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.6",
"terser": "^5.31.3",
"typescript": "~5.5.3",
"vite": "^5.3.4",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "~2.0.26"
}
}