-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 980 Bytes
/
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
{
"name": "nuxt3-payload-template",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "dotenv -- turbo run dev",
"build": "dotenv -- turbo run build",
"start": "dotenv -- turbo run start",
"generate": "dotenv -- turbo run generate",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,md}\"",
"update": "pnpm up --interactive; pnpm up --interactive --filter nuxt; pnpm up --interactive --filter payload",
"update-latest": "pnpm up --interactive --latest; pnpm up --interactive --latest --filter nuxt; pnpm up --interactive --latest --filter payload",
"configure-env": "configure-env"
},
"devDependencies": {
"configure-env": "^1.0.0",
"turbo": "^1.13.4"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"dotenv-cli": "^7.4.2",
"prettier": "^3.3.3"
},
"resolutions": {
"sharp": "latest"
}
}