-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "pomodoro-timer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"format": "prettier -w src/",
"lint-format": "npm run lint -- --fix && npm run format",
"test-unit": "vitest",
"test-coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@raffaelesgarro/vue-use-sound": "^2.0.4",
"@vueuse/core": "^10.7.2",
"lucide-vue-next": "^0.336.0",
"ress": "^5.0.2",
"vue": "^3.3.11"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@rushstack/eslint-patch": "^1.7.2",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.0.2",
"@vitejs/plugin-vue": "^4.5.2",
"@vitest/coverage-v8": "^1.3.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-vue": "^9.21.1",
"eslint-plugin-vuejs-accessibility": "^2.2.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-webfont-dl": "^3.9.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.3.1",
"vue-tsc": "^1.8.25"
}
}