-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 865 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 865 Bytes
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
{
"name": "genrefy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"deploy": "npm run build && git add dist -f && git commit -m'hosting' && git subtree push --prefix dist origin gh-pages",
"lint": "eslint --max-warnings=0 src",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@fontsource/inter": "^4.5.12",
"axios": "^0.27.2",
"chart.js": "^3.9.1",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-query": "^3.39.2",
"react-router-dom": "^6.4.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.23.1",
"eslint-config-react-app": "^7.0.1",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}