-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.92 KB
/
package.json
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
{
"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",
"typedoc": "typedoc",
"coverage": "vitest run --coverage",
"build": "(cd packages/signaldb && npm run build) && npm run build -w packages",
"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 && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Max Nowack <max.nowack@gmail.com>",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@rollup/plugin-typescript": "12.1.1",
"@stylistic/eslint-plugin": "^2.6.4",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@vitest/coverage-istanbul": "^2.0.4",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prefer-object-spread": "1.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-vitest": "0.5.4",
"fast-glob": "^3.3.2",
"happy-dom": "15.11.6",
"husky": "9.1.7",
"mermaid": "^10.9.1",
"rimraf": "6.0.1",
"rollup-plugin-typescript-paths": "1.5.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "^0.26.6",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0",
"vite-plugin-node-polyfills": "0.22.0",
"vite-tsconfig-paths": "4.3.2",
"vitepress": "1.5.0",
"vitepress-plugin-mermaid": "^2.0.16",
"vitest": "2.1.5",
"vitest-github-actions-reporter": "0.11.1"
}
}