-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
59
{
"name": "inTRACKtive",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"format": "prettier --write src",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@czi-sds/components": "^21.6.3",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/base": "^5.0.0-beta.40",
"@mui/icons-material": "^5.15.15",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.15",
"playwright": "^1.41.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.159.0",
"zarr": "^0.6.2"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/three": "^0.159.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/browser": "^1.2.2",
"@vitest/coverage-istanbul": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vitest": "^1.2.2"
},
"prettier": {
"semi": true,
"quoteProps": "consistent",
"tabWidth": 4,
"printWidth": 120,
"trailingComma": "all",
"bracketSpacing": true
}
}