forked from coding-buddies-discord/cb-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 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
{
"name": "streak-bot",
"version": "1.0.0",
"description": "A bot to help encourage Coding Buddies",
"exports": "./index.js",
"node": ">=16.0.0",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"start": "node ./src/index.js",
"dev": "NODE_ENV=development nodemon ./src/index.js",
"deploy-commands": "node deploy-commands.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waream2/cb-streak-bot.git"
},
"author": "Earn",
"license": "ISC",
"bugs": {
"url": "https://github.com/waream2/cb-streak-bot/issues"
},
"homepage": "https://github.com/waream2/cb-streak-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"countries-and-timezones": "^3.3.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"html-entities": "^2.3.3",
"luxon": "^2.4.0",
"mongodb": "^4.6.0",
"node-cron": "^3.0.2",
"puppeteer": "^15.3.0"
},
"devDependencies": {
"@types/node": "^18.6.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"nodemonConfig": {
"ignore": [
"db.json"
]
},
"lint-staged": {
"*.js": [
"eslint src",
"prettier --config .prettierrc 'src/**/*.js' --write"
]
}
}