-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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": "war_state_bot",
"version": "1.0.3",
"description": "A discord bot to post updates about the state of war in Foxhole",
"type": "module",
"main": "dist/index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint src --fix",
"lint-dry": "eslint src --fix-dry-run"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sapphire/discord.js-utilities": "^6.0.6",
"@sapphire/framework": "^4.4.1",
"@sapphire/time-utilities": "^1.7.9",
"@sinclair/typebox": "^0.27.8",
"axios": "^1.3.6",
"axios-cache-interceptor": "^1.0.1",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"table": "^6.8.1"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
}
}