-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "eplant",
"version": "0.0.0",
"description": "Eplant",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "jest --passWithNoTests",
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && prettier ./Eplant --check",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && prettier ./Eplant --write",
"preview": "vite preview"
},
"author": "Alex Waese-Perlman",
"license": "undecided",
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto-mono": "^5.0.8",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@mui/icons-material": "^5.14.11",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.14.11",
"@mui/x-data-grid": "^6.15.0",
"@mui/x-tree-view": "^7.5.1",
"@popperjs/core": "^2.11.8",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.5.1",
"color2k": "^2.0.2",
"dompurify": "^3.0.6",
"flexlayout-react": "^0.7.11",
"idb": "^7.1.1",
"jotai": "^2.4.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"react-window": "^1.8.9"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/dompurify": "^3.0.3",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@types/react-window": "^1.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"babel-loader": "^9.1.3",
"chromatic": "^7.2.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jotai-devtools": "^0.7.0",
"msw": "^1.3.1",
"prettier": "3.1.0",
"react-draggable": "^4.4.6",
"react-transition-group": "^4.4.5",
"react-zoomable-ui": "^0.11.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.2.1"
}
}