-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
{
"name": "weathervue",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src/",
"deploy": "gh-pages -d dist",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^10.7.0",
"d3": "^7.8.0",
"gsap": "^3.12.0",
"lucide-vue-next": "^0.300.0",
"pinia": "^2.1.0",
"three": "^0.160.0",
"vue": "^3.4.0",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/d3": "^7.4.0",
"@types/node": "^25.0.3",
"@types/three": "^0.160.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vitest/coverage-v8": "^4.0.16",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.0.0",
"gh-pages": "^6.3.0",
"happy-dom": "^20.1.0",
"postcss": "^8.4.0",
"prettier": "^3.2.0",
"tailwindcss": "^3.4.0",
"typescript": "~5.3.0",
"vite": "^5.0.0",
"vite-plugin-pwa": "^0.17.0",
"vitest": "^4.0.16",
"vue-tsc": "^2.0.0"
}
}