-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
68 lines (68 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "skyhook",
"version": "1.0.0",
"description": "Parses webhooks and forwards them in the proper format to Discord.",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"gcp-build": "npm run build",
"start": "node dist/index.js",
"buildstart": "npm run build && npm run start",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint . --ext .js,.ts --fix",
"deploy": "npm run build && gcloud app deploy",
"logs": "gcloud app logs tail -s default",
"dev": "nodemon"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/gravatar": "^1.8.3",
"@types/luxon": "^3.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.9",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"camelcase": "^7.0.1",
"cors": "^2.8.5",
"dotenv": "16.0.3",
"express": "^4.21.0",
"gravatar": "^1.8.2",
"luxon": "^3.3.0",
"turndown": "^7.1.1",
"winston": "^3.8.2"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"repository": {
"url": "https://github.com/Commit451/skyhook"
},
"bugs": {
"url": "https://github.com/Commit451/skyhook/issues"
},
"license": "MIT",
"keywords": [
"node",
"skyhook",
"discord"
]
}