forked from discordjs/website
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.24 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
{
"name": "garlic-team-website",
"version": "3.0.0",
"description": "The website housing documentation for garlic-team",
"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 --base=/docs/",
"serve": "vite preview"
},
"license": "Apache-2.0",
"dependencies": {
"@headlessui/vue": "^1.5.0",
"@vueuse/core": "^8.2.6",
"@vueuse/head": "^0.7.6",
"common-tags": "^1.8.2",
"focus-visible": "^5.2.0",
"highlight.js": "^11.5.1",
"lodash": "^4.17.21",
"marked": "^4.0.14",
"semver": "^7.3.7",
"vue": "^3.2.33",
"vue-router": "^4.0.14",
"vue-tippy": "^6.0.0-alpha.30",
"vuex": "^4.0.2"
},
"devDependencies": {
"@iconify/json": "^2.1.29",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/common-tags": "^1.8.1",
"@types/lodash": "^4.14.182",
"@types/marked": "^4.0.3",
"@types/node": "^17.0.25",
"@types/semver": "^7.3.9",
"@types/workbox-build": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.33",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^8.6.0",
"postcss": "^8.4.12",
"postcss-focus-visible": "^6.0.4",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"unplugin-icons": "^0.14.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.5",
"vite-plugin-pages": "^0.23.0",
"vite-plugin-pwa": "^0.12.0",
"vue-eslint-parser": "^8.3.0",
"vue-tsc": "^0.34.7",
"workbox-cacheable-response": "^6.5.3",
"workbox-core": "^6.5.3",
"workbox-expiration": "^6.5.3",
"workbox-precaching": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-strategies": "^6.5.3"
}
}