-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 880 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": "youtube-podcast-feeds",
"version": "1.2.6",
"main": "index.js",
"author": "Trevor Sharp <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@types/config": "^0.0.41",
"@types/express": "^4.17.13",
"@types/moment-duration-format": "^2.2.3",
"axios": "^0.25.0",
"config": "^3.3.7",
"express": "^4.17.2",
"googleapis": "^92.0.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"node-cache": "^5.1.2",
"podcast": "^2.0.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "rm -rf ./build && tsc --build tsconfig.json",
"start": "yarn build && node ./build/index.js",
"start:dev": "touch availableToDownload && export NODE_ENV=development && nodemon"
}
}