-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "beardify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vite",
"lint": "vue-tsc --noEmit && eslint src/**/*.{vue,ts} && prettier --c ./src/**/*.{ts,vue,json} && stylelint ./src/**/*.{vue,scss}",
"build": "yarn lint && vite build",
"fix": "prettier --write ./src/**/*.{ts,vue,json} && eslint src/**/*.{vue,ts} --fix && stylelint ./src/**/*.{vue,scss} --fix",
"preview": "yarn build && yarn vite preview",
"lint:commit": "vue-tsc --noEmit",
"pre-commit": "yarn lint:commit"
},
"dependencies": {
"axios": "^1.6.2",
"date-fns": "^2.30.0",
"form-urlencoded": "^6.1.4",
"normalize-diacritics": "^4.0.3",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"pkce": "^1.0.0-beta2",
"vue": "^3.3.11",
"vue-router": "^4.2.5",
"vue-slicksort": "^2.0.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/compiler-sfc": "^3.3.11",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/core": "^10.7.0",
"eslint": "^8.55.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.19.2",
"normalize.css": "^8.0.1",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"stylelint": "^16.0.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vue-tsc": "^1.8.25"
}
}