-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.71 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
{
"name": "windchimes",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"type-check": "vue-tsc --build --force",
"build-only": "vite build",
"build": "run-p type-check \"build-only {@}\" --",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "prettier --write src/",
"graphql-codegen": "graphql-codegen --config graphql-codegen.ts",
"capacitor:dev": "npm run build && cap run android",
"capacitor:build-debug": "npm run build && cap build android --keystorepath ~/.android/debug.keystore --keystorepass android --keystorealias androiddebugkey --keystorealiaspass android --androidreleasetype \"APK\"",
"capacitor:build": "npm run build && ./build-apk.sh",
"capacitor:generate-splash-icons": "capacitor-assets generate"
},
"dependencies": {
"@apollo/client": "^3.11.2",
"@auth0/auth0-vue": "^2.3.3",
"@capacitor/android": "^6.1.1",
"@capacitor/app": "^6.0.0",
"@capacitor/browser": "^6.0.1",
"@capacitor/cli": "^6.1.1",
"@capacitor/core": "^6.1.1",
"@capacitor/haptics": "^6.0.0",
"@jofr/capacitor-media-session": "^4.0.0",
"@vee-validate/zod": "^4.13.2",
"@vue/apollo-composable": "^4.0.2",
"@vueuse/core": "^10.11.0",
"animejs": "^3.2.2",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"pinia": "^2.1.7",
"siriwave": "^2.4.0",
"vee-validate": "^4.13.2",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vuetify": "^3.6.13",
"zod": "^3.23.8"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.3.3",
"@graphql-codegen/typescript": "^4.0.9",
"@mdi/font": "^7.4.47",
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/animejs": "^3.1.12",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-jsdoc": "^50.1.0",
"eslint-plugin-vue": "^9.23.0",
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"start-server-and-test": "^2.0.4",
"steiger": "^0.4.0",
"typescript": "^5.5.4",
"vite": "^5.3.1",
"vite-plugin-vuetify": "^2.0.3",
"vue-tsc": "^2.0.21"
}
}