This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.78 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
{
"name": "@aparajita/capacitor-splash-screen-demo",
"version": "2.0.2",
"description": "An Ionic/Vue demo of the @aparajita/capacitor-splash-screen plugin",
"private": true,
"author": "Aparajita Fishman",
"homepage": "https://github.com/aparajita/capacitor-splash-screen-demo",
"repository": {
"type": "git",
"url": "https://github.com/aparajita/capacitor-splash-screen-demo.git"
},
"bugs": "https://github.com/aparajita/capacitor-splash-screen-demo/issues",
"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 --write --cache --list-different '**/*{.ts,.js,.mjs,.md,.json,.yaml,.java}'",
"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-dark-mode": "^3.0.3",
"@aparajita/capacitor-logger": "^3.1.1",
"@aparajita/capacitor-splash-screen": "^2.0.2",
"@capacitor/android": "^4.3.0",
"@capacitor/app": "^4.0.1",
"@capacitor/core": "^4.3.0",
"@capacitor/haptics": "^4.0.1",
"@capacitor/ios": "^4.3.0",
"@capacitor/keyboard": "^4.0.1",
"@capacitor/status-bar": "^4.0.1",
"@ionic/core": "^6.2.9",
"@ionic/vue": "^6.2.9",
"@ionic/vue-router": "^6.2.9",
"vue": "^3.2.40",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@aparajita/eslint-config-vue": "^1.0.6",
"@aparajita/prettier-config": "^1.0.0",
"@aparajita/tailwind-ionic": "^1.1.1",
"@capacitor/cli": "^4.3.0",
"@types/node": "^18.8.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/compiler-sfc": "^3.2.40",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.12",
"commit-and-tag-version": "^10.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-vue": "^9.5.1",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "~4.8.4",
"vite": "^3.1.4",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "~0.40.13"
}
}