-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
43
44
45
46
47
48
{
"name": "java_lava_helper",
"version": "2.0.0",
"type": "module",
"description": "The Java Lava Discord Bot - Helper Version",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhillsPhanbh3/Java-Lava-V2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PhillsPhanbh3/Java-Lava-V2/issues"
},
"homepage": "https://github.com/PhillsPhanbh3/Java-Lava-V2#readme",
"dependencies": {
"@eslint/js": "^10.0.1",
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mongoose": "^9.6.3",
"typescript-eslint": "^8.60.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}