-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
51 lines (51 loc) · 1.39 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": "spotify-dedup",
"description": "Remove duplicates from your Spotify library",
"version": "2.0.0",
"repository": "git@github.com:JMPerez/spotify-dedup.git",
"author": "José M. Pérez <jperez@spotify.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "BUNDLE_ANALYZE=browser next build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"type": "module",
"dependencies": {
"@radix-ui/react-progress": "^1.1.0",
"axios": "^1.7.7",
"chart.js": "^4.4.6",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"eslint-config-next": "^15.0.3",
"i18next": "^23.16.5",
"next": "15.0.3",
"next-i18next": "^15.3.1",
"node-fetch": "^2.7.0",
"postcss": "^8.4.49",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "^15.1.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}