Skip to content

Commit 6212d86

Browse files
authored
Merge pull request #102 from Stigmatoz/refact
Refact
2 parents c860e80 + dc69854 commit 6212d86

File tree

144 files changed

+11151
-4489
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+11151
-4489
lines changed

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
artifacts
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
26+
# Config files
27+
.webextrc
28+
.webextrc.*

.prettierrc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
singleQuote: true
2+
trailingComma: all
3+
endOfLine: lf
4+
printWidth: 100
5+
tabWidth: 2
6+
arrowParens: avoid

package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "web-activity-time-tracker",
3+
"private": true,
4+
"version": "1.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite build --watch --mode development",
8+
"start": "vite build --watch --mode production",
9+
"format": "prettier --write .",
10+
"script:zip": "vite build --mode production && powershell scripts/zip.ps1"
11+
},
12+
"dependencies": {
13+
"@vueuse/core": "^10.2.1",
14+
"chart.js": "^4.3.0",
15+
"date-fns": "^2.30.0",
16+
"rollup-plugin-copy": "^3.4.0",
17+
"vue": "^3.2.47",
18+
"vue-chartjs": "^5.2.0",
19+
"vue-i18n": "^9.2.2"
20+
},
21+
"devDependencies": {
22+
"@intlify/unplugin-vue-i18n": "^0.12.2",
23+
"@kyvg/vue3-notification": "^2.9.1",
24+
"@types/webextension-polyfill": "^0.10.0",
25+
"@vitejs/plugin-vue": "^4.0.0",
26+
"@vuepic/vue-datepicker": "^5.3.0",
27+
"typescript": "^5.0.4",
28+
"vite": "^4.1.4",
29+
"vite-plugin-web-extension": "^3.0.0",
30+
"vue-tsc": "^1.2.0",
31+
"webextension-polyfill": "^0.10.0"
32+
}
33+
}

0 commit comments

Comments
 (0)