forked from pedroaraujo1952/AzureWebhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "azure-webhook",
"version": "2.0.0",
"main": "server.js",
"license": "MIT",
"author": {
"name": "Pedro Henrique Souza Araujo",
"email": "pedroaraujo@pecege.com",
"url": "https://github.com/Ph-FMM"
},
"engines": {
"node": "14.x"
},
"scripts": {
"dev:server": "ts-node-dev ./src/server.ts",
"start": "node dist/server.js",
"tsc": "tsc",
"postinstall": "npm run tsc",
"watch": "tsc -p tsconfig.json -w",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.2",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.5.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"prettier": "^2.3.0",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
}
}