-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 957 Bytes
/
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
{
"name": "v4vtags",
"version": "0.0.1",
"description": "An open api primarily for taxonimizing value for value(v4v) music in order to facilitate music search and discovery. While v4v music is this projects primary focus, other podcast:medium types may also be included.",
"main": "server.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/server.js",
"preserve": "npm run build",
"serve": "npx tsc -w & nodemon dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.11.27",
"mongoose": "^8.2.1",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
}
}