-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "calculator-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"**/*.{vue,ts}\"",
"lint:fix": "eslint \"**/*.{vue,ts}\" --fix",
"prettier": "prettier . --check",
"prettier:write": "prettier . --write",
"stylelint": "stylelint \"**/*.{vue,css}\"",
"stylelint:fix": "stylelint \"**/*.{vue,css}\" --fix",
"format": "pnpm run lint:fix && pnpm run prettier:write && pnpm run stylelint:fix",
"check": "vue-tsc && pnpm run lint && pnpm run prettier && pnpm run stylelint",
"test": "echo success"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"pinia": "^2.2.6",
"vue": "^3.5.13",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"postcss-preset-env": "^10.1.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.1.10",
"vuetify": "^3.7.4"
}
}