-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"predev": "sha512sum --strict --check package.sha512 > temp0 2> /dev/null && awk -F: '{print $1}' temp0 | LC_COLLATE=C sort > temp1 && ls -1 package.json package-lock.json node_modules/**/package.json | LC_COLLATE=C sort > temp2 && diff -aq temp1 temp2 > /dev/null && rm --force temp0 temp1 temp2 || npm install --no-fund --no-audit --prefer-dedupe && sha512sum --text package.json package-lock.json node_modules/**/package.json > package.sha512 && rm --force temp0 temp1 temp2",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db": "pscale shell teste main"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@planetscale/database": "^1.13.0",
"nuxt": "^3.9.0",
"vue": "^3.4.0",
"vue-router": "^4.2.5",
"zod": "^3.22.4"
}
}