forked from sumitkolhe/jiosaavn-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
{
"name": "jiosaavn-api",
"version": "1.0.0",
"description": "Unofficial api for downloading songs from jiosaavn.com",
"license": "MIT",
"author": "Sumit Kolhe",
"main": "src/api/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/sumitkolhe/jiosaavn-api"
},
"scripts": {
"dev": "nodemon",
"pretty": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint . --ext \".ts\"",
"lint:fix": "eslint --fix --ext .js,.ts .",
"deploy": "vercel deploy --prod"
},
"dependencies": {
"axios": "^0.27.2",
"celebrate": "^15.0.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"joi": "^17.6.0"
},
"devDependencies": {
"@kolhe/eslint-config": "^1.1.5",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}