-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
65 lines (65 loc) · 1.93 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
{
"private": true,
"scripts": {
"dev": "NODE_ENV=development nuxt dev",
"build": "nuxt build",
"build:firebase": "NITRO_PRESET=firebase nuxt build",
"generate": "nuxt generate && copy-files-from-to",
"start": "nuxt start",
"deploy": "npm run build && firebase hosting:channel:deploy preview --expires 14d",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js",
"meilisearch:index": "tsx ./scripts/meilisearchIndexer.ts"
},
"dependencies": {
"@headlessui/tailwindcss": "~0.1.2",
"@headlessui/vue": "~1.7.7",
"@nuxt/kit": "~3.4.2",
"@nuxtjs/robots": "~3.0.0",
"@tailwindcss/aspect-ratio": "~0.4.2",
"@tailwindcss/forms": "~0.5.3",
"@tailwindcss/line-clamp": "~0.4.2",
"@tailwindcss/typography": "~0.5.8",
"@tanstack/vue-query": "~4.29.11",
"@vueuse/core": "~9.12.0",
"dotenv": "~16.3.1",
"gray-matter": "~4.0.3",
"gsap": "npm:@gsap/shockingly@~3.11.4",
"js-jsonq": "~1.0.3",
"lodash.debounce": "~4.0.8",
"markdown-it": "~13.0.1",
"meilisearch": "~0.33.0",
"nuxt": "~3.0.0",
"nuxt-clipboard": "~0.0.7",
"shiki": "~0.14.0",
"sitemap": "~7.1.1",
"tailwindcss": "~3.2.4",
"uuid": "~9.0.0",
"vue": "~3.3.4",
"vue-instantsearch": "~4.10.1"
},
"devDependencies": {
"@nuxt/content": "~2.3.0",
"@types/gsap": "~3.0.0",
"@types/lodash.debounce": "~4.0.7",
"autoprefixer": "~10.4.13",
"copy-files-from-to": "~3.6.0",
"firebase-admin": "~11.5.0",
"firebase-functions": "~4.2.1",
"firebase-functions-test": "~3.0.0",
"nuxt-simple-sitemap": "~1.0.11",
"postcss": "~8.4.21",
"prettier": "~2.8.1",
"tsx": "~3.12.6"
},
"resolutions": {
"micromark": "~3.1.0"
},
"copyFiles": [
{
"from": ".output/public/404/index.html",
"to": ".output/public/404.html"
}
]
}