-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "react-project-template",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && eslint --ext .tsx,.ts . && vite build",
"serve": "vite preview",
"start": "vite",
"predeploy": "npm run build",
"deploy": "netlify deploy --prod --dir=dist"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"useTabs": false
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.14",
"@mui/x-charts": "^7.0.0",
"axios": "^1.6.8",
"cryptocurrency-icons": "^0.18.1",
"decimal.js": "^10.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"recharts": "^2.12.3"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/parser": "^4.30.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"sass": "^1.39.0",
"typescript": "^4.4.2",
"vite": "^2.5.3",
"vite-plugin-checker": "^0.3.4",
"vite-plugin-linter": "^0.2.3"
}
}