forked from ufosc/Jukebox-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "jukebox-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@vitejs/plugin-react": "^4.2.0",
"axios": "^1.6.2",
"material-icons": "^1.13.12",
"material-icons-react": "^1.0.4",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"vite": "^5.0.3",
"vite-tsconfig-paths": "^4.2.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "npx eslint src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check --log-level warn \"src/**/*.{jsx,js}\"",
"format:fix": "prettier --write --log-level warn \"src/**/*.{jsx,js}\""
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.2.5",
"vite-plugin-eslint": "^1.8.1"
}
}