-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
74 lines (74 loc) · 2.18 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
{
"name": "discord.js-website",
"version": "3.0.0",
"description": "The website housing documentation for discord.js",
"author": "Noel Buechler <[email protected]>",
"contributors": [
"Amish Shah <[email protected]>",
"Schuyler Cebulskie <[email protected]>"
],
"private": true,
"scripts": {
"lint": "prettier --check . && eslint src --ext .ts,.vue",
"format": "prettier --write . && eslint src --ext .ts,.vue --fix",
"fmt": "prettier --write . && eslint src --ext .ts,.vue --fix",
"dev": "vite --port 3333",
"dev:open": "vite --port 3333 --open",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview"
},
"license": "Apache-2.0",
"dependencies": {
"@headlessui/vue": "^1.7.13",
"@vueuse/core": "^10.1.2",
"@vueuse/head": "^1.1.26",
"common-tags": "^1.8.2",
"focus-visible": "^5.2.0",
"highlight.js": "^11.8.0",
"lodash": "^4.17.21",
"marked": "^4.0.14",
"semver": "^7.5.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"vue-tippy": "^6.1.2",
"vuex": "^4.1.0"
},
"devDependencies": {
"@iconify/json": "^2.2.61",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/common-tags": "^1.8.1",
"@types/lodash": "^4.14.194",
"@types/marked": "^4.3.0",
"@types/node": "^17.0.25",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.47",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.11.0",
"postcss": "^8.4.23",
"postcss-focus-visible": "^8.0.2",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.6.3",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.5",
"vite-plugin-pages": "^0.29.0",
"vite-plugin-pwa": "^0.14.7",
"vue-eslint-parser": "^9.2.1",
"vue-tsc": "^1.6.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
}
}