-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.12 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.12 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@repo/root",
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@9.15.0",
"private": true,
"scripts": {
"changesets:empty": "changeset add --empty",
"changesets:create": "changeset add",
"changesets:apply": "changeset version",
"changesets:status": "changeset status --since=main",
"release": "pnpm build && changeset publish --tag latest",
"test": "pnpm -r --parallel run test",
"build": "pnpm -r run build",
"format:check": "wireit",
"format:write": "wireit",
"lint": "wireit",
"dev": "pnpm --filter @repo/playground run dev"
},
"wireit": {
"format:check": {
"command": "prettier . --check --cache",
"files": [
"./.prettierrc",
"./.prettierignore",
"**/*.{js,jsx,ts,tsx,md,json,css}",
"!**/dist/**/*",
"!pnpm-lock.yaml"
],
"output": []
},
"format:write": {
"command": "prettier . --write --cache",
"files": [
"./.prettierrc",
"./.prettierignore",
"**/*.{js,jsx,ts,tsx,md,json,css}",
"!**/dist/**/*",
"!pnpm-lock.yaml"
],
"output": []
},
"lint": {
"dependencies": [
"lint:ts",
"lint:ecma",
"format:check"
]
},
"lint:ts": {
"command": "tsc --project tsconfig.json",
"files": [
"./tsconfig.json",
"**/*.{ts,tsx}",
"!dist/**/*"
],
"output": []
},
"lint:ecma": {
"command": "eslint --color --cache --config eslint.config.js --cache-location .eslintcache",
"files": [
"**/*.{ts,tsx}",
"!dist/**/*",
"./eslint.config.js"
],
"output": []
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.33.0",
"@lit/react": "^1.0.8",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.3",
"@types/node": "^20.19.10",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "1.1.32-beta.3",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"express": "^4.21.2",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"shx": "^0.3.4",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"wireit": "^0.14.12"
}
}