-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "simtourneybot",
"version": "1.0.0",
"description": "A Discord bot for running simulation robotics tournaments in xRC Sim",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint src --fix && prettier --write src"
},
"keywords": [
"xrc",
"bot",
"discord",
"tournament",
"event"
],
"author": "Nicholas Bottone",
"license": "AGPL-3.0-or-later",
"dependencies": {
"discord.js": "^14.10.2",
"dotenv": "^16.0.3",
"google-spreadsheet": "^3.3.0",
"node-fetch": "^2.6.9",
"pino": "^8.12.0",
"pino-pretty": "^10.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/google-spreadsheet": "^3.3.1",
"@types/node": "^18.16.3",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"semi": true,
"filepath": "**.{ts,json}"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-console": "warn",
"@typescript-eslint/consistent-type-imports": "warn"
}
}
}