-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "workspace",
"version": "1.0.0",
"private": "true",
"workspaces": ["packages/*", "packages/devtools/*"],
"description": "Share RxJs streams across tabs and windows",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"lerna": "^5.1.4",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tsup": "^6.6.3",
"typescript": "^4.7.4"
},
"dependencies": {},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx \".\" --fix",
"build": "lerna run --stream build",
"test": "lerna run --parallel test",
"start:app": "lerna run start --scope=test-app"
}
}