-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
31 lines (31 loc) · 1.05 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
{
"name": "immer-yjs-monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace immer-yjs build",
"test": "yarn workspace immer-yjs test",
"publish": "yarn workspace immer-yjs npm publish",
"release": "yarn workspace immer-yjs release",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --fix packages",
"format": "prettier . --write",
"check:formatting": "prettier . --check",
"check:types": "yarn workspace immer-yjs check:types"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^3.4.2",
"vite": "^2.8.4"
},
"packageManager": "yarn@4.6.0"
}