-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.65 KB
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
{
"name": "spotify-clone",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "yarn biome check src/",
"lint:fix": "yarn biome check src/ --write",
"format": "yarn biome format src/ --write",
"ci": "yarn biome ci src/",
"test": "vitest run --coverage"
},
"dependencies": {
"@biomejs/biome": "^2.4.7",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"axios": "^1.9.0",
"fast-average-color": "^9.5.0",
"qs": "^6.14.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^6.27.0",
"sass": "^1.89.2",
"typescript": "^5.8.2",
"universal-cookie": "^7.2.2",
"zustand": "^5.0.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@types/qs": "^6.14.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-v8": "^3.2.3",
"babel-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"jsdom": "^26.0.0",
"vite": "^5.4.9",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^3.2.3"
},
"repository": "https://github.com/bastiendmt/spotify-like-web.git",
"author": "Bastien DUMONT <bastienxs@gmail.com>",
"license": "MIT"
}