-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.81 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"cloudflare-build": "NITRO_PRESET=cloudflare yarn build",
"cloudflare-preview": "npx wrangler dev .output/server/index.mjs --site .output/public",
"cloudflare-dev": "yarn cloudflare-build && wrangler dev --config wrangler.dev.toml",
"cloudflare-publish-dev": "yarn cloudflare-build && wrangler deploy --config wrangler.dev.toml",
"cloudflare-publish": "yarn cloudflare-build && wrangler deploy",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230801.0",
"@nuxt/content": "^2.12.1",
"@nuxt/devtools": "latest",
"@nuxt/image": "^1.0.0-rc.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/google-fonts": "3.2.0",
"@types/node": "^18.17.1",
"@typescript-eslint/parser": "^6.2.0",
"@zadigetvoltaire/nuxt-gtm": "^0.0.13",
"autoprefixer": "^10.4.14",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"nuxt": "^3.13.2",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vitest": "^0.34.1",
"wrangler": "3.105.1"
},
"dependencies": {
"lucide-vue-next": "^0.263.0",
"sitemap": "^7.1.1",
"vue-masonry-css": "^1.0.3"
},
"type": "module",
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}