-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"private": true,
"workspaces": [
"parts/*"
],
"name": "totkeks.xyz",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preserve": "vite build",
"serve": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint --ext .ts,.vue src && stylelint **/*.vue",
"lint:fix": "eslint --fix --ext .ts,.vue src && stylelint --fix **/*.vue",
"postinstall": "husky install",
"setup:yarn": "yarn dlx @yarnpkg/sdks vscode"
},
"dependencies": {
"vue": "^3.2.37",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-html": "^1.4.1",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"typescript": "~4.7.4",
"unplugin-vue-components": "^0.21.0",
"vite": "^2.9.13",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.38.2"
},
"packageManager": "[email protected]"
}