-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.24 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
59
60
61
62
63
64
{
"name": "web-kit-monorepo-root",
"private": true,
"description": "TypeScript-based various types of solutions for Distributed Lab projects and not only.",
"license": "MIT",
"homepage": "https://distributed-lab.github.io/web-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/distributed-lab/web-kit.git"
},
"keywords": [
"distributed-lab",
"web-kit",
"sdk"
],
"bugs": {
"url": "https://github.com/distributed-lab/web-kit/issues"
},
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test && yarn rsc"
},
"scripts": {
"build": "yarn workspaces foreach -pv --topological-dev run build",
"build:jac": "yarn workspace @distributedlab/jac build",
"build:fetcher": "yarn workspace @distributedlab/fetcher build",
"build:tools": "yarn workspace @distributedlab/tools build",
"build:reactivity": "yarn workspace @distributedlab/reactivity build",
"build:w3p": "yarn workspace @distributedlab/w3p build",
"docs": "typedoc --options typedoc.json",
"lint": "eslint . --ext .ts --fix --cache --max-warnings=0 && yarn workspaces foreach -pv --no-private run typecheck",
"test": "yarn workspaces foreach -pv --no-private run test",
"test:watch": "jest --watch",
"publish-next": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish --tag next",
"publish-latest": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish",
"rsc": "node scripts/release-sanity-check.js",
"apply-version": "node scripts/version.js"
},
"devDependencies": {
"@swc/cli": "^0.3.9",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/eslint": "^8",
"@types/jest": "^29.5.1",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"tsc-alias": "^1.8.2",
"typedoc": "^0.23.26",
"typescript": "^5.0.4",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}