-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
73 lines (73 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
{
"name": "jukebox-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode dev",
"network": "vite --mode network --no-open",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check --log-level warn \"src/**/*.{jsx,js,ts,tsx}\"",
"format:fix": "prettier --write --log-level warn \"src/**/*.{jsx,js,ts,tsx}\"",
"test": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:preview": "npx vite preview --outDir test-html"
},
"dependencies": {
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.19",
"@reduxjs/toolkit": "^2.2.7",
"@tanstack/react-table": "^8.16.0",
"@types/spotify-web-playback-sdk": "^0.1.19",
"ag-grid-react": "^32.1.0",
"axios": "^1.6.2",
"cross-env": "^7.0.3",
"material-icons": "^1.13.12",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.26.2",
"recharts": "^2.10.2",
"socket.io-client": "^4.7.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"core-js": "^3.38.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-refresh": "^0.4.4",
"fake-indexeddb": "^6.0.0",
"jsdom": "^25.0.1",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.4.0",
"vite": "^5.0.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.0.5"
}
}