-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1006 Bytes
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
{
"name": "calendar-heatmap-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run --workspaces --if-present build",
"clean": "rm -rf packages/*/dist",
"lint": "eslint \"packages/**/src/**/*.{ts,js,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"demo": "vite --config example/vite.config.mts",
"demo:build": "vite build --config example/vite.config.mts",
"demo:preview": "vite preview --config example/vite.config.mts"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.0.0",
"@changesets/cli": "^2.27.1",
"eslint": "^9.0.0",
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"vitest": "^4.0.18",
"vite": "^7.3.1"
}
}