-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "lennethbot",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/Oasiris/LennethBot#readme",
"bugs": {
"url": "https://github.com/Oasiris/LennethBot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oasiris/LennethBot.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "src/index.ts",
"imports": {
"#src/*": "./src/*.ts"
},
"engines": {
"node": ">=24.15"
},
"directories": {
"doc": "docs"
},
"scripts": {
"start": "nodemon src/index.ts",
"dev": "nodemon",
"typecheck": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commands:install": "node scripts/installCommands.ts",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:up": "prisma migrate deploy",
"db:studio": "prisma studio",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.9.1",
"@prisma/client": "^7.9.1",
"discord.js": "^14.27.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^26.1.2",
"@types/pluralize": "^0.0.33",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"nodemon": "^3.1.14",
"prettier": "^3.9.6",
"prisma": "^7.9.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
}
}