-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 892 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 892 Bytes
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
{
"name": "wynntools-utils",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"types": "src/types/main.d.ts",
"scripts": {
"start": "npx tsx index.ts",
"lint:check": "npx eslint src/ index.ts",
"lint": "npx eslint src/ index.ts --fix",
"prettier": "npx prettier --write src/ index.ts",
"prettier:check": "npx prettier --check src/ index.ts",
"build": "npx tsc --build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"mongo-sanitize": "^1.1.0",
"mongoose": "^8.1.1",
"node-cron": "^3.0.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/mongo-sanitize": "^1.0.3",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}