-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1016 Bytes
/
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
{
"name": "collaboration-kit",
"packageManager": "yarn@3.1.1",
"workspaces": [
"packages/*"
],
"scripts": {
"clean:node_modules": "rm -rf packages/*/node_modules",
"clean:dist": "rm -rf packages/*/dist",
"clean": "yarn run clean:node_modules && yarn run clean:dist",
"check": "yarn run check:ts && yarn run check:format && yarn run check:lint",
"check:format": "prettier --check packages *.md",
"check:lint": "eslint packages",
"check:ts": "tsc --project packages/json --project packages/y-json --project packages/y-react --project packages/y-redux --noEmit",
"test": "jest",
"build": "yarn workspaces foreach -ipv --topological-dev run build"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}