-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.79 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
{
"name": "yatoo",
"version": "0.10.0",
"description": "Organize your life!",
"scripts": {
"build": "COMMIT_HASH=\"${COMMIT_HASH:-`git rev-parse --short=7 HEAD`}\" VERSION=$(node -pe 'require(\"./package.json\").version') webpack",
"build-dev": "npm run build",
"build-prod": "NODE_ENV=production npm run build",
"test": "TEST=true vitest",
"ci:test": "npm run test -- --run",
"lint": "eslint ./src",
"check": "vue-tsc --noEmit",
"dev": "npm run build -- serve --port 3000",
"capacitor-sync": "npx cap sync && npx cap sync @capacitor-community/electron",
"run-android": "npx cap run android",
"run-electron": "npx cap open @capacitor-community/electron",
"build-android": "dotenv -- bash -c './android/gradlew -p android assembleRelease'",
"build-electron": "cd electron && npm run electron:make"
},
"source": "./src/index.html",
"author": {
"name": "Paul Tirk",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/powerpaul17/yatoo.git"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@primevue/themes": "^4.0.4",
"@vueuse/components": "^10.2.1",
"@vueuse/core": "^10.2.1",
"blinkdb": "^0.14.0",
"localforage": "^1.10.0",
"lucide-vue-next": "^0.293.0",
"primevue": "^4.0.4",
"uuid": "^8.3.2",
"vue": "^3.3.4",
"vue-i18n": "^9.3.0-beta.26",
"vue-router": "^4.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^6.0.0",
"@capacitor/cli": "^6.0.0",
"@capacitor/device": "^6.0.1",
"@capacitor/filesystem": "^6.0.1",
"@happy-dom/global-registrator": "^11.2.0",
"@types/sinon": "^10.0.15",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-vue": "^4.5.1",
"@vue/tsconfig": "^0.4.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.8.1",
"dayjs": "^1.11.13",
"dotenv-cli": "^7.2.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"eslint-plugin-vue": "^9.14.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.30",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"register-service-worker": "^1.7.2",
"sinon": "^15.2.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"ts-loader": "^9.5.1",
"typescript": "^5.1.3",
"vitest": "^1.0.1",
"vue-eslint-parser": "^9.3.0",
"vue-loader": "^17.3.1",
"vue-tsc": "^1.8.22",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.1.0"
}
}