-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "signaldb-workspace",
"private": true,
"scripts": {
"preversion": "npm run lint && npm run test -- run && npm run build",
"prepare": "npm run build && husky install",
"lint": "eslint .",
"test": "vitest",
"bench": "vitest bench",
"typedoc": "typedoc",
"coverage": "vitest run --coverage",
"build": "(cd packages/base/core && npm run build) && npm run build -w packages/base && npm run build -w packages/devtools && npm run build -w packages/integrations && npm run build -w packages/persistence-adapters && npm run build -w packages/reactivity-adapters",
"analyze-bundle": "npm run analyze-bundle -w packages/base && npm run analyze-bundle -w packages/devtools && npm run analyze-bundle -w packages/integrations && npm run analyze-bundle -w packages/persistence-adapters && npm run analyze-bundle -w packages/reactivity-adapters",
"type-check": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "npm run build && npm run build -w examples && npm run copy -w examples && npm run typedoc && npm run docs:build-vitepress",
"docs:build-vitepress": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Max Nowack <max.nowack@gmail.com>",
"license": "MIT",
"workspaces": [
"examples/*",
"packages/integrations/*",
"packages/persistence-adapters/*",
"packages/reactivity-adapters/*",
"packages/devtools/*",
"packages/base/*"
],
"devDependencies": {
"@codecov/bundle-analyzer": "^2.0.0",
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@rollup/plugin-typescript": "12.3.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@vitest/coverage-istanbul": "4.1.8",
"@vitest/eslint-plugin": "^1.6.6",
"eslint": "10.4.1",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "^63.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-testing-library": "^7.15.4",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^64.0.0",
"fast-glob": "^3.3.3",
"happy-dom": "20.9.0",
"husky": "9.1.7",
"mermaid": "^11.12.2",
"rimraf": "6.1.3",
"rollup-plugin-typescript-paths": "1.5.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "^0.28.15",
"typescript": "5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "8.0.16",
"vite-plugin-dts": "5.0.2",
"vite-tsconfig-paths": "6.1.1",
"vitepress": "1.6.4",
"vitepress-plugin-llms": "^1.10.0",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "4.1.8"
}
}