-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "buggie-bot",
"version": "0.0.1",
"description": "SerenityOS Discord Bot",
"main": "index.js",
"license": "BSD-2-Clause",
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prestart:dev": "npm run build",
"start:dev": "nodemon build/index.js",
"prebuild": "rimraf ./build",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SerenityOS/discord-bot.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"serenityos"
],
"bugs": {
"url": "https://github.com/SerenityOS/discord-bot/issues"
},
"homepage": "https://github.com/SerenityOS/discord-bot#readme",
"devDependencies": {
"@octokit/types": "^6.19.0",
dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-4.28.4
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/eslint-plugin": "^4.28.3",
dependabot/npm_and_yarn/eslint-7.31.0 Slave_2
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.30.0",
Slave_2
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.1.0"
},
"dependencies": {
"@octokit/rest": "^18.6.7",
"@types/node": "^16.3.3",
"discord.js": "^12.2.0",
"dotenv": "^10.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}