-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
{
"name": "talking-migration-webinar-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "xo"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.12.1",
"@textea/json-viewer": "^2.16.2",
"axios": "^1.3.5",
"launchdarkly-react-client-sdk": "^3.0.6",
"mui-image": "^1.0.7",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.10.0",
"react-timezone-select": "^2.1.0",
"reactflow": "^11.7.0",
"ua-parser-js": "^1.0.35",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/mui-image": "^1.0.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/ua-parser-js": "^0.7.36",
"@vitejs/plugin-react": "^3.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"xo": "^0.54.1"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"unicorn/filename-case": [
"error",
{
"case": "kebabCase",
"ignore": [
"App.tsx"
]
}
],
"import/extensions": "off",
"n/file-extension-in-import": "off"
},
"globals": [
"document"
]
}
}