-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "svbot",
"version": "1.2.0",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node out/main.js",
"build": "tsc",
"dev": "npx concurrently --raw \"tsc --watch\" \"npx nodemon out/main.js\"",
"deploy": "yarn build && node deploy.mjs",
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix",
"format": "prettier --check \"src/**/*.{ts,js}\"",
"format-fix": "prettier --write \"src/**/*.{ts,js}\"",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@sendgrid/mail": "^8.1.3",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"fuse.js": "^7.0.0",
"mongodb": "^6.3.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"mongodb-memory-server": "^9.1.6",
"prettier": "^3.2.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"vitest": "^1.6.1"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}