-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "vue-project-visualizer",
"description": "Vue Project Visualizer",
"private": false,
"version": "0.1.0",
"license": "MIT",
"author": "vuejsco",
"homepage": "https://vuejsco.com",
"repository": {
"type": "git",
"url": "https://github.com/vuejsco/vue-project-visualizer"
},
"bugs": {
"url": "https://github.com/vuejsco/vue-project-visualizer/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"release": "release-it"
},
"dependencies": {
"@vueuse/core": "^12.7.0",
"axios": "^1.7.9",
"d3": "^7.9.0",
"pinia": "^3.0.1",
"vue-router": "^4.5.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.20.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/d3": "^7.4.3",
"@types/node": "^22.13.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint-plugin-vue": "^9.32.0",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.2",
"prettier": "3.5.1",
"release-it": "^18.1.2",
"tailwindcss": "^4.0.6",
"typescript-eslint": "^8.24.0",
"typescript": "~5.7.3",
"vite": "^6.1.0",
"vue-tsc": "^2.2.2"
},
"lint-staged": {
"*.{js,json,css,scss,html,md}": [
"prettier --write"
]
}
}