-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
{
"devDependencies": {
"@esm-bundle/chai": "4.3.4",
"@jest/globals": "^29.3.1",
"@playwright/test": "^1.29.0",
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"@types/react": "^18.0.20",
"@types/react-router-dom": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-react": "^1.3.0",
"chai": "^4.3.4",
"eslint": "8.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^29.0.2",
"prettier": "2.4.1",
"prettier-plugin-jsdoc": "^0.3.24",
"react": "^18.2.0",
"ts-jest": "^29.0.1",
"typedoc": "^0.23.14",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.8",
"vite": "^3.0.5"
},
"name": "@tomic/root",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm run start",
"lint": "pnpm run -r lint",
"lint-fix": "pnpm run -r lint-fix",
"build": "pnpm run -r build",
"test": "pnpm run -r test",
"test-query": "pnpm run --filter @tomic/data-browser test-query",
"start": "pnpm run -r --parallel start",
"typedoc": "typedoc . --options typedoc.json",
"typecheck": "pnpm run -r --parallel typecheck",
"playwright-install": "playwright install"
},
"workspaces": {
"packages": [
"lib",
"react",
"data-browser"
]
},
"packageManager": "[email protected]",
"dependencies": {
"eslint-plugin-import": "^2.26.0"
}
}