-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 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
{
"name": "api_spotify_playlists",
"version": "1.0.0",
"description": "",
"main": "./build/server.js",
"scripts": {
"start": "npx prisma generate && npx tsc && node build/server.js",
"tsc": "tsc",
"start:prod": "node build/server.js",
"dev": "nodemon build/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "6",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"node-cache": "^5.1.2",
"typescript": "^5.1.6"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prisma": "6",
"ts-node": "^10.9.1"
}
}