-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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": "chain-game-bot",
"version": "0.0.0",
"private": true,
"homepage": "https://discord.gg/GcwZtqNCGx",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.json",
"dev": "tsc --project tsconfig.json --watch",
"format": "prettier --write \"**\" \"!./dist/\" --ignore-unknown --cache",
"lint": "eslint",
"serve": "nodemon --env-file .env --enable-source-maps . --ext js,json",
"start": "node --enable-source-maps .",
"test": "node --run build && cd dist && node --enable-source-maps --test"
},
"prettier": "@redguy12/prettier-config",
"dependencies": {
"didyoumean2": "7.0.4",
"discord.js": "14.22.1",
"match-sorter": "8.2.0",
"mongoose": "8.23.0",
"strife.js": "4.4.0"
},
"devDependencies": {
"@redguy12/prettier-config": "3.4.4",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "<=22.10",
"eslint": "9.34.0",
"eslint-config-cobaltt7": "1.3.1",
"nodemon": "3.1.14",
"prettier": "3.7.1",
"typescript": "5.9.3"
},
"optionalDependencies": {
"@railway/cli": "4.33.0"
},
"engines": {
"node": "^22.10.0",
"npm": ">=9.0.0"
}
}