-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.35 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
43
44
45
46
47
{
"name": "drift-monorepo",
"version": "0.1.0",
"private": true,
"description": "Drift - An alpha frontend framework with a unified styling and animation language",
"workspaces": [
"packages/*",
"example-app"
],
"scripts": {
"dev": "pnpm --filter drift-example-app dev",
"build": "node scripts/release-check.mjs --build",
"vercel-build": "node scripts/vercel-build.mjs",
"test": "vitest",
"test:e2e": "playwright test",
"test:budgets": "node scripts/check-budgets.mjs",
"release:check": "node scripts/release-check.mjs",
"release:pack": "node scripts/validate-packages.mjs",
"release:publish": "node scripts/publish-packages.mjs",
"metadata": "node scripts/update-package-metadata.js",
"test:ui": "vitest --ui",
"type-check": "node scripts/release-check.mjs --typecheck",
"clean": "pnpm -r run clean",
"drift": "node packages/cli/dist/cli.js"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@playwright/test": "1.62.1",
"@types/node": "^20.10.0",
"@vitest/ui": "^3.2.6",
"fast-check": "^3.15.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"pnpm": {
"overrides": {
"nanoid": "^3.3.17",
"postcss": "^8.5.18"
}
}
}