-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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": "webhook-server",
"version": "1.0.0",
"description": "Simple webhook server for sending webhooks when a youtube channel uploads a new video",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.js",
"exec": "ts-node ./src/index.ts"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/express": "^4.17.21",
"@types/node": "^18.19.34",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"nodemon": "^2.0.22"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^2.7.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"youtube-notification": "^1.1.0"
}
}