-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
48
49
50
51
52
53
54
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run build",
"dev": "bun run scripts/dev.ts",
"dev:packages": "lerna run dev --scope=@altertable/altertable-* --parallel",
"dev:examples": "lerna run dev --scope=@altertable/example-* --parallel",
"clean": "lerna run clean",
"typecheck": "lerna run typecheck",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"test:watch": "lerna run test:watch --parallel",
"coverage": "lerna run coverage --parallel",
"bundlesize": "bundlesize",
"test:integration": "vitest run --config scripts/integration/vitest.config.ts"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@testing-library/dom": "10.4.1",
"@types/bun": "1.3.3",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.48.0",
"@typescript-eslint/parser": "8.48.0",
"@vitest/coverage-v8": "4.0.13",
"bundlesize": "0.18.2",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"jiti": "2.6.1",
"jsdom": "27.2.0",
"lerna": "9.0.1",
"lint-staged": "16.2.7",
"prettier": "3.6.2",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.13"
},
"resolutions": {
"esbuild": "0.25.4",
"brace-expansion": "2.0.2"
}
}