-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "stranerd",
"description": "Stranerd App",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"postinstall": "yarn jetify",
"serve": "vite --port 8080",
"preserve": "yarn bin:project:env",
"build:web": "vite build",
"build:app": "SKIP_COMPRESSION=1 vite build",
"prebuild:web": "yarn bin:project:env",
"prebuild:app": "yarn bin:project:env",
"postbuild:app": "cap sync",
"lint": "eslint --fix ./src/**/*.{js,ts,vue} && stylelint --fix ./src/**/*.{css,scss,vue}",
"prepare": "husky install",
"ionic:serve": "yarn serve",
"run:android": "ionic cap run android --livereload --external --port 8080",
"run:ios": "ionic cap run ios --livereload --external --port 8080",
"bin:project:setup": "node bin/project setup",
"bin:project:version": "node bin/project version",
"bin:project:env": "node bin/project env",
"bin:project:appBuild": "yarn build:app && node bin/project appBuild",
"bin:icons": "capacitor-assets generate --ios --android"
},
"dependencies": {
"@awesome-cordova-plugins/core": "^6.3.0",
"@capacitor-community/apple-sign-in": "^4.0.0",
"@capacitor-community/file-opener": "^1.0.4",
"@capacitor/android": "^4.6.1",
"@capacitor/app": "4.1.1",
"@capacitor/clipboard": "^4.1.0",
"@capacitor/core": "4.6.1",
"@capacitor/dialog": "^4.1.0",
"@capacitor/filesystem": "^4.1.4",
"@capacitor/haptics": "4.1.0",
"@capacitor/ios": "^4.6.1",
"@capacitor/keyboard": "4.1.0",
"@capacitor/preferences": "^4.0.2",
"@capacitor/push-notifications": "^4.1.2",
"@capacitor/share": "^4.1.0",
"@capacitor/splash-screen": "^4.1.2",
"@capacitor/status-bar": "4.1.1",
"@capacitor/toast": "^4.1.0",
"@codetrix-studio/capacitor-google-auth": "^3.2.0",
"@ionic/pwa-elements": "^3.1.1",
"@ionic/vue": "^6.4.1",
"@ionic/vue-router": "^6.4.1",
"axios": "^1.2.2",
"capacitor-blob-writer": "1.1.4",
"katex": "^0.16.4",
"plist": "^3.0.6",
"socket.io-client": "^4.5.4",
"sweetalert2": "^11.6.16",
"valleyed": "^4.0.7",
"vue": "^3.2.45",
"vue-pdf-embed": "^1.1.5",
"vue-router": "^4.1.6",
"vue-tel-input": "^6.0.5",
"vue-waypoint": "^4.2.5",
"vue3-editor": "^0.1.1",
"vue3-marquee": "^3.1.2"
},
"devDependencies": {
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "4.6.1",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@ionic/cli": "^6.20.6",
"@trapezedev/project": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-plugin-check-file": "^1.3.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.3",
"jetifier": "^2.0.0",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"tailwindcss": "^3.2.4",
"typescript": "~4.9.4",
"unplugin-vue-components": "^0.22.12",
"vite": "^3.2.5",
"vite-plugin-checker": "^0.5.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-pwa": "^0.14.1",
"vue-tsc": "^1.0.22"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}