-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "nuxt-app",
"devDependencies": {
"@nuxt/content": "^2.13.2",
"@nuxt/eslint": "0.5.5",
"@nuxt/fonts": "^0.7.2",
"@nuxt/image": "^1.8.0",
"@nuxt/ui": "^2.18.4",
"@nuxtjs/algolia": "^1.10.2",
"@nuxtjs/mdc": "^0.8.3",
"@nuxtjs/seo": "2.0.0-rc.20",
"@nuxtjs/supabase": "^1.4.0",
"algoliasearch": "^5.3.0",
"jose": "^5.8.0",
"monaco-editor": "0.50.0",
"nuxt": "^3.13.2",
"nuxt-aos": "1.2.5",
"nuxt-monaco-editor": "^1.2.9",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "1.78.0",
"vue": "^3.5.4",
"vue-router": "^4.4.4"
},
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . --fix",
"format": "prettier --write .",
"supatypes": "export POSTGRES_PASSWORD=$(grep '^POSTGRES_PASSWORD=' .env | cut -d '=' -f2-) && bunx supabase gen types --db-url=\"postgres://postgres:[email protected]:5432/postgres\" --schema public > supabase/types.ts",
"deploy": "sh -c 'branch=$(git rev-parse --abbrev-ref HEAD) && if [ \"$branch\" = \"dev\" ]; then docker compose -f compose.build.preview.yaml build --push; elif [ \"$branch\" = \"master\" ]; then docker compose -f compose.build.prod.yaml build --push; else echo \"Branch not recognized. No action taken.\"; fi'"
},
"trustedDependencies": [
"esbuild",
"sharp",
"vue-demi"
],
"type": "module"
}