This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.65 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
{
"private": true,
"packageManager": "yarn@3.5.1",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel run build",
"clean": "yarn workspaces foreach --parallel run clean",
"version:pre": "yarn workspaces foreach --no-private version ${PKG_VERSION}",
"publish": "yarn workspaces foreach --no-private run publish",
"test": "vitest --run",
"lint": "npx eslint --max-warnings=0 packages/**/src/**",
"fmt": "prettier --check packages/**/src/**",
"test:ct": "playwright test -c playwright-ct.config.ts",
"storybook": "yarn workspace @react-fluent-edit/storybook storybook",
"storybook:static": "yarn workspace @react-fluent-edit/storybook storybook:static"
},
"devDependencies": {
"@playwright/experimental-ct-react": "1.34.3",
"@playwright/test": "1.34.3",
"@testing-library/react": "14.0.0",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"@vitejs/plugin-react": "4.0.0",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.12",
"fast-glob": "3.2.12",
"fs-extra": "11.1.1",
"happy-dom": "9.20.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.1",
"slate": "0.94.1",
"slate-history": "0.93.0",
"slate-react": "0.95.0",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"vitest": "0.31.3"
}
}