-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
40
41
42
43
44
{
"name": "netlify-webhooks",
"version": "0.0.0",
"description": "",
"main": "functions/webhook.js",
"type": "module",
"scripts": {
"deploy": "netlify deploy --prod",
"local": "netlify dev",
"lint": "eslint . --fix --ignorepath .gitignore",
"format": "prettier . --write --ignorepath .gitignore"
},
"repository": {
"type": "git",
"url": "https://github.com/SaudiGN/Netlify-webhooks.git"
},
"keywords": [
"Netlify",
"Webhook",
"Discord"
],
"author": {
"name": "Nabil Alsaiad",
"email": "nabil@saudigamenews.com"
},
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.3",
"patreon-webhook-signature": "^1.2.4",
"webhook-discord": "^3.7.8"
},
"devDependencies": {
"@netlify/functions": "^1.6.0",
"@types/node": "*",
"discord-api-types": "*",
"eslint": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsdoc": "*",
"eslint-plugin-promise": "*",
"netlify-cli": "*",
"patreon-api-types": "*",
"prettier": "*"
}
}