-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.65 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "xnet",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:stories": "storybook build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"dev:stories": "storybook dev --ci --no-open --host 127.0.0.1 --port 6006",
"test": "pnpm --filter xnet-desktop run deps:node && vitest run",
"test:editor": "pnpm --filter @xnetjs/editor test",
"test:stories": "storybook test --url http://127.0.0.1:6006",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate:canvas-v2": "bash scripts/validate-canvas-v2-release-gate.sh",
"lint": "eslint packages apps --ext .ts,.tsx",
"format:check": "prettier --check \"packages/**/*.{ts,tsx}\" \"apps/**/*.{ts,tsx}\"",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"test:integration": "pnpm --filter @xnetjs/integration-tests test",
"test:integration:watch": "pnpm --filter @xnetjs/integration-tests test:watch",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@github-ui/storybook-addon-performance-panel": "^1.1.4",
"@storybook/addon-a11y": "^10.2.16",
"@storybook/addon-links": "^10.2.16",
"@storybook/addon-themes": "^10.2.16",
"@storybook/addon-vitest": "^10.2.16",
"@storybook/react-vite": "^10.2.16",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^4.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"fake-indexeddb": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nid-webauthn-emulator": "^0.2.9",
"prettier": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^10.2.16",
"tailwindcss": "^3.4.19",
"tsup": "^8.0.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"vitest related --run --passWithNoTests"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"package.json": []
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron"
],
"patchedDependencies": {
"y-webrtc@10.3.0": "patches/y-webrtc@10.3.0.patch"
}
}
}