-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 840 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 840 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
35
36
37
38
39
40
41
42
{
"name": "42bot",
"version": "1.0.0",
"author": "Raraph84",
"scripts": {
"start": "node index.js",
"build": "tsc",
"dev": "tsx watch index.ts",
"format": "prettier --write **/*.{ts,json}"
},
"dependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.0",
"discord.js": "^14.24.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"moment": "^2.30.1",
"mysql2": "^3.15.3",
"typescript": "^5.9.3"
},
"devDependencies": {
"prettier": "^3.6.2",
"tsx": "^4.20.6"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"printWidth": 120,
"overrides": [
{
"files": [
"package.json",
"package-lock.json",
"tsconfig.json"
],
"options": {
"tabWidth": 2
}
}
]
}
}