-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "hacktoberfest-monitor",
"private": true,
"type": "module",
"scripts": {
"start": "vite --port=3000",
"prebuild": "node scripts/contributions.js",
"build": "tsc && vite build && cp ./dist/index.html ./dist/404.html",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --loglevel error --write ."
},
"dependencies": {
"@apollo/client": "^3.8.4",
"@emotion/react": "^11.11.1",
"@mantine/core": "^5.5.0",
"@mantine/hooks": "^5.5.0",
"@tabler/icons": "^1.101.0",
"eslint-config-prettier": "^9.0.0",
"graphql": "^16.8.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"use-query-params": "^2.2.1"
},
"devDependencies": {
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.1.0",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5.2.2",
"vite": "^4.5.5"
}
}