-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "discord-bots",
"version": "1.0.3",
"description": "",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"author": "Edge Network <[email protected]>",
"contributors": [
"Adam K Dean <[email protected]>",
"Will Garrett<[email protected]>"
],
"scripts": {
"start": "node out/src/main.js",
"build": "tsc",
"dev": "ts-node src/main.ts",
"dev:watch": "nodemon --watch src -e ts --exec 'npm run dev'",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src"
},
"bin": "out/src/main.js",
"dependencies": {
"@edge/config": "^0.4.0",
"@edge/log": "^1.3.1",
"cors": "^2.8.5",
"discord.js": "^13.5.0",
"express": "^4.18.1",
"prom-client": "^14.0.1",
"superagent": "^6.1.0"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/superagent": "^4.1.14",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.2"
}
}