-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.48 KB
/
package.json
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
{
"name": "namagomi-bot",
"version": "3.0.0",
"description": "なまごみぼっと",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix src/**/*.{js,json,md}",
"format": "prettier --write src/**/*.{js,json,md}",
"fix": "npm run format && npm run lint",
"start": "node bot.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NamagomiNetwork/Namagomi-bot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NamagomiNetwork/Namagomi-bot/issues"
},
"homepage": "https://github.com/NamagomiNetwork/Namagomi-bot",
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@eslint/migrate-config": "^1.1.2",
"axios": "^1.0.0",
"child_process": "^1.0.2",
"discord-job-panel": "^1.0.8",
"discord.js": "^14.15.3",
"dotenv": "^16.0.1",
"fs": "^0.0.1-security",
"globals": "^15.8.0",
"log4js": "^6.5.2",
"mongoose": "^8.0.0",
"node-cron": "^3.0.1",
"os": "^0.1.2",
"path": "^0.12.7",
"prettier-eslint": "^16.0.0",
"util": "^0.12.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"ts-migrate": "^0.0.0"
}
}