-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "slate-yjs",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "yarn workspaces foreach -ipv --topological-dev run build",
"dev": "yarn workspaces foreach -ipv run dev",
"deploy": "yarn deploy:docs",
"deploy:docs": "yarn workspace @slate-yjs/example deploy",
"lint": "yarn lint:typescript && yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:typescript": "tsc --build ./ --force",
"test": "yarn run vitest run",
"test:watch": "yarn run vitest",
"clean": "git clean -dfX",
"prerelease": "yarn lint && yarn test && yarn build",
"release": "yarn prerelease && yarn changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"slate-hyperscript": "^0.67.0",
"typescript": "^4.6.3",
"vitest": "^0.8.1"
}
}