forked from Hanziness/FocusTide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.27 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
{
"name": "lazy-pomodoro",
"description": "Free and open-source productivity timer, right from your browser. Built to be simple.",
"version": "1.5.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"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": {
"@tauri-apps/api": "^1.2.0",
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-tabler-icons": "^2.17.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/runtime-corejs3": "^7.20.1",
"@intlify/unplugin-vue-i18n": "^0.7.3",
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/google-fonts": "^3.0.0-1",
"@pinia/nuxt": "^0.4.3",
"@tauri-apps/cli": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.13",
"core-js": "^3.27.1",
"eslint": "^8.31.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.8.0",
"nuxt": "^3.0.0",
"postcss": "^8.4.20",
"postcss-html": "^1.5.0",
"sass": "^1.57.1",
"sharp": "^0.31.3",
"standard-version": "^9.5.0",
"stylelint": "^14.16.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.1.4",
"vue-i18n": "^9.2.2",
"workbox-build": "^6.5.4"
},
"peerDependencies": {
"vite": "^3.0.0"
}
}