-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "root",
"private": true,
"scripts": {
"build": "node scripts/workspace.mjs build",
"postbuild": "node scripts/version-warning.mjs",
"dev": "node scripts/workspace.mjs dev",
"pack": "node scripts/workspace.mjs pack",
"pack:bump": "pnpm --filter scan pack:bump",
"lint": "pnpm -r lint",
"lint:all": "oxlint .",
"changeset": "changeset add",
"version": "changeset version",
"release": "changeset publish",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@playwright/test": "^1.58.2",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"oxlint": "latest",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "latest",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@9.1.0",
"dependencies": {
"@vercel/speed-insights": "^1.1.0"
},
"pnpm": {
"overrides": {
"@jridgewell/gen-mapping": "0.3.2",
"@jridgewell/sourcemap-codec": "1.4.15"
}
}
}