-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 978 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 978 Bytes
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
{
"name": "jamerator",
"version": "0.0.0",
"description": "A random album/playlist selector for Spotify.",
"private": true,
"license": "MIT",
"author": {
"name": "Benjamin Tan",
"url": "https://ofcr.se/"
},
"repository": {
"type": "git",
"url": "https://github.com/bnjmnt4n/jamerator.git"
},
"bugs": "https://github.com/bnjmnt4n/jamerator/issues",
"dependencies": {
"@tanstack/react-query": "^5.90.6",
"lodash": "^4.17.21",
"query-string": "^9.3.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"fix": "prettier --write ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@vitejs/plugin-react": "^5.1.0",
"prettier": "^3.6.2",
"vite": "^7.1.12"
}
}