-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 736 Bytes
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
{
"private": true,
"scripts": {
"test": "jest",
"prettier": "prettier \"*.{js,json,yml,md}\" \"packages/**/*\""
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-websocket-mock": "^2.4.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"workspaces": [
"packages/nodejs",
"packages/browser",
"apps/nodejs-example",
"apps/browser-example"
],
"dependencies": {
"uuid": "^9.0.0",
"ws": "^8.11.0"
}
}