-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 926 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
33
34
35
36
{
"name": "iptv-api",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/Kian-404/iptv-api.git",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node ./index.ts",
"build": "tsc --build",
"start": "node ./dist/index.js"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.1.1",
"axios": "^0.21.4",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-log4": "^2.3.2",
"koa2-swagger-ui": "^5.2.0",
"log4js": "^6.3.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa__cors": "^3.0.3",
"@types/koa__router": "^8.0.8",
"@types/node": "^16.9.1",
"@vercel/node": "^1.12.1"
}
}