-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "colors",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"homepage": "https://pgalhardo.github.io/colors/",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint --max-warnings 0 --ext .ts,.vue .",
"lint:fix": "eslint src --ext .ts,.vue --fix"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"@mdi/font": "^7.4.47",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.5.0",
"sass": "^1.93.2",
"vue": "^3.5.21",
"vue-i18n": "^11.1.12",
"vue-router": "^4.5.1",
"vuetify": "^3.10.2"
},
"devDependencies": {
"@babel/types": "^7.28.4",
"@types/node": "^22.18.6",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vite-plugin-vuetify": "^2.1.2",
"vue-tsc": "^3.0.8"
}
}