forked from SevenTV/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "seventv",
"version": "0.0.0",
"scripts": {
"dev": "vite --mode dev",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint:style": "stylelint **/*.{vue,scss,css} --ignore-path .gitignore",
"lint:js": "eslint --ext .js,.vue,.ts --ignore-path .gitignore .",
"lint": "yarn lint:js && yarn lint:style",
"format": "prettier -w .",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,vue,js}": "eslint --fix",
"*": "prettier -w -u",
"*.{css,scss,vue}": "stylelint --fix"
},
"dependencies": {
"vue": "^3.2.45"
},
"optionalDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/sharp-solid-svg-icons": "^6.2.1"
},
"devDependencies": {
"@apollo/client": "^3.7.4",
"@floating-ui/dom": "^1.1.0",
"@formkit/themes": "^1.0.0-beta.12",
"@formkit/vue": "^1.0.0-beta.12",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/vue-fontawesome": "3.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/dompurify": "^2.4.0",
"@types/node": "18.11.18",
"@types/set-value": "^4.0.1",
"@types/ua-parser-js": "^0.7.36",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/apollo-composable": "^4.0.0-alpha.18",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vuelidate/core": "^2.0.0-alpha.44",
"@vuelidate/validators": "^2.0.0-alpha.31",
"@vueuse/core": "^9.10.0",
"@vueuse/head": "^1.0.22",
"apollo-link-context": "^1.0.20",
"date-fns": "^2.29.1",
"dompurify": "^2.4.3",
"eslint": "^8.32.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"graphql": "^16.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"marked": "^4.2.12",
"no-darkreader": "^1.0.3",
"pinia": "^2.0.29",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.3",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"subscriptions-transport-ws": "^0.11.0",
"typescript": "^4.9.4",
"ua-parser-js": "^1.0.2",
"v-wave": "^1.5.0",
"vite": "^4.0.4",
"vue-cookie-next": "^1.3.0",
"vue-i18n": "^9.1.10",
"vue-router": "4.1.6",
"vue-router-prefetch": "^2.0.2",
"vue-tsc": "^1.0.24",
"yup": "^0.32.11"
}
}