-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"repository": "https://github.com/vercel/examples.git",
"license": "MIT",
"private": true,
"workspaces": [
"apis/*",
"packages/*"
],
"scripts": {
"preinstall": "node -e \"const userAgent = process.env.npm_config_user_agent || ''; if (process.env.INIT_CWD === process.cwd() && !userAgent.includes('pnpm/')) { console.error('Use pnpm in this repo.'); process.exit(1); }\"",
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "vitest run"
},
"engines": {
"pnpm": ">=10.27.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=10.27.0",
"onFail": "error"
}
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-turbo": "latest",
"prettier": "3.3.2",
"turbo": "^2.5.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.33.0",
"resolutions": {
"zod": "3.25.34"
}
}