-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 935 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 935 Bytes
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
{
"name": "hackernews",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"dependencies": {
"@tanstack/vue-query": "^5.62.0",
"@tanstack/vue-query-devtools": "^5.62.0",
"@vueuse/core": "^10.9.0",
"axios": "^1.6.5",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"postcss": "^8.4.38",
"prettier": "3.2.4",
"tailwindcss": "^3.4.3",
"typescript": "^5.7.2",
"vite": "^5.0.10"
}
}