-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "weather.it",
"version": "1.5.2",
"description": "Another weather app with fancy design",
"repository": "https://github.com/begprod/weather.it",
"homepage": "https://weatherit.site/",
"author": "Andrey Aratov",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"test:unit:watch": "vitest",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"prettier:check": "prettier --check src/",
"prettier:format": "prettier --write src/",
"type:check": "vue-tsc --noEmit --skipLibCheck -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@heroicons/vue": "^2.1.1",
"@vueuse/core": "^10.7.2",
"axios": "^1.7.4",
"pinia": "^2.1.7",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.6.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.16",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"gh-pages": "^5.0.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"sass": "^1.69.6",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.4.6",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.25"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}