-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "building-bot",
"version": "1.2.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/index.js",
"dev": "nodemon --watch src/ --exec ts-node src/index.ts",
"build": "tsc",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/request": "^5.4.9",
"axios": "^0.21.2",
"discord.js": "^12.2.0",
"moment": "^2.29.2",
"node-cache": "^5.1.2",
"pretty-bytes": "^5.3.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}