-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 935 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 935 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
{
"name": "build-with-the-spotify-api",
"version": "0.1.0",
"description": "A full-stack web application that lets users view their top Spotify tracks and artists using the Spotify Web API.",
"scripts": {
"dev": "concurrently \"cd client && vite --clearScreen=false\" \"cd server && nodemon src/server.js\" --names \"client,api\" --prefix-colors \"green,blue\"",
"dev:client": "cd client && vite --clearScreen=false",
"dev:api": "cd server && nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdvplus/build-with-the-spotify-api.git"
},
"author": "Jaime de Venecia",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdvplus/build-with-the-spotify-api/issues"
},
"homepage": "https://github.com/jdvplus/build-with-the-spotify-api#readme",
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"vite": "^7.1.7"
}
}