-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "timefall",
"productName": "Timefall",
"version": "0.6.1",
"description": "Tracks and Records Your Work Time Accurately",
"author": {
"name": "Anton Reshetov",
"email": "[email protected]"
},
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/antonreshetov/timefall"
},
"keywords": [],
"main": ".vite/build/main.js",
"scripts": {
"dev": "electron-forge start",
"fixtures:seed": "bun ./src/services/api/fixtures/index.ts",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint .",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@iconify-json/solar": "^1.1.9",
"@vueuse/core": "^10.7.2",
"apexcharts": "^3.48.0",
"axios": "^1.6.8",
"chroma-js": "^2.4.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"interactjs": "^1.10.26",
"lucide-vue-next": "^0.321.0",
"maska": "^2.1.11",
"nanoid": "^5.0.5",
"radix-vue": "^1.4.6",
"tailwind-merge": "^2.2.1",
"v-calendar": "^3.1.2",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vue3-perfect-scrollbar": "^1.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.2.0",
"@electron-forge/maker-rpm": "^7.2.0",
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"@electron-forge/plugin-vite": "^7.2.0",
"@types/chroma-js": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-vue": "^5.0.3",
"autoprefixer": "^10.4.17",
"bumpp": "^9.3.0",
"electron": "28.2.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.25.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"sass": "^1.71.1",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.0.0",
"typescript": "^5.3.3",
"unplugin-icons": "^0.18.5",
"unplugin-vue-components": "^0.26.0"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"commit-msg": "bunx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
},
"volta": {
"node": "20.11.0"
}
}