-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1008 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1008 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
{
"name": "synckit-monorepo",
"version": "0.3.0",
"private": true,
"workspaces": [
"sdk",
"examples/*"
],
"scripts": {
"build": "npm run build -w sdk",
"build:examples": "npm run build --workspaces --if-present",
"dev:collaborative-editor": "npm run dev -w @synckit-examples/collaborative-editor",
"dev:project-management": "npm run dev -w @synckit-examples/project-management",
"test": "npm run test -w sdk && cd server/typescript && bun test && cd ../.. && cd core && cargo test && cd ..",
"test:watch": "npm run test -w sdk -- --watch",
"test:coverage": "npm run test -w sdk -- --coverage",
"lint": "npm run lint -w sdk && cd server/typescript && bun run lint && cd ../..",
"format": "cd server/typescript && bun run format && cd ../..",
"type-check": "npm run lint -w sdk && cd server/typescript && bun run typecheck && cd ../..",
"check": "npm run lint && npm run type-check && npm test"
},
"dependencies": {
"ws": "^8.18.3"
}
}