-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
64 lines (64 loc) · 2.18 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
{
"name": "another-pomodoro",
"description": "Free and open-source productivity timer, right from your browser. Built to be simple.",
"version": "1.7.0-0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"start": "nuxi preview",
"generate": "nuxi generate",
"generate:modern": "nuxi generate --modern",
"clean": "nuxi clean",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "pnpm lint:js && pnpm lint:style",
"release-patch": "standard-version --release-as patch && git push --follow-tags",
"release-minor": "standard-version --release-as minor && git push --follow-tags",
"release-major": "standard-version --release-as major && git push --follow-tags",
"release": "standard-version"
},
"dependencies": {
"@tabler/icons-vue": "^3.16.0",
"pinia": "^2.2.2",
"postcss-import": "^16.1.0",
"vue": "^3.5.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/runtime-corejs3": "^7.25.6",
"@intlify/unplugin-vue-i18n": "^5.0.0",
"@nuxt/kit": "^3.13.1",
"@nuxtjs/eslint-config": "12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@pinia/nuxt": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.4.20",
"core-js": "^3.38.1",
"eslint": "^8.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.28.0",
"nuxt": "^3.13.2",
"postcss": "^8.4.46",
"postcss-html": "^1.7.0",
"sass": "^1.78.0",
"sharp": "^0.33.5",
"standard-version": "^9.5.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^5.3.1",
"vue-i18n": "^10.0.1",
"workbox-build": "^7.1.1"
}
}