-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "emotional-link",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": ".",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "serve dist -s -n -L -p $PORT",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.4",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.18",
"@mui/x-date-pickers": "^7.5.0",
"d3": "^7.9.0",
"d3-color-legend": "^1.4.1",
"dayjs": "^1.11.11",
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6.21.2",
"serve": "^14.2.1",
"uuid": "^9.0.1",
"vite-plugin-pwa": "^0.20.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "3.2.2",
"standard": "^17.1.0",
"vite": "^5.0.8"
},
"eslintConfig": {
"extends": [
"standard"
]
}
}