This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.26 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": "vue-ionic-template",
"version": "1.1.0",
"description": "A production ready starter template for projects with ionic-vue with linting, formatter etc pre-configured.",
"main": "./src/main.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"project-setup": "pnpm install && rm -rf .husky && npx husky install && npx husky add .husky/commit-msg 'npx --no -- commitlint --verbose --edit $1' ",
"format": "npx prettier --write --config ./.prettierrc.js src",
"lint": "npx eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srav001/vue-ionic-template.git"
},
"author": "Sravan Suresh",
"license": "MIT",
"bugs": {
"url": "https://github.com/srav001/vue-ionic-template/issues"
},
"homepage": "https://github.com/srav001/vue-ionic-template#readme",
"dependencies": {
"@capacitor/app": "4.0.1",
"@capacitor/core": "4.3.0",
"@capacitor/haptics": "4.0.1",
"@capacitor/keyboard": "4.0.1",
"@capacitor/status-bar": "4.0.1",
"@ionic/vue": "^6.2.8",
"@ionic/vue-router": "^6.2.8",
"pinia": "^2.0.22",
"vue": "^3.2.39",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@capacitor/cli": "4.3.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@unocss/transformer-directives": "^0.45.22",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/eslint-config-airbnb": "^7.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-vue": "^9.5.1",
"eslint-plugin-vuejs-accessibility": "^1.2.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"taze": "^0.8.1",
"unocss": "^0.45.22",
"vite": "^3.1.3",
"vite-plugin-pages": "^0.26.0",
"vue-tsc": "^0.40.13"
}
}