-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
57
58
59
60
{
"name": "gerald-the-discord-bot",
"version": "1.0.0",
"description": "A Discord bot that recommends computer game giveaways.",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"start:dev": "ts-node-dev ./src/index.ts",
"build": "tsc",
"build:watch": "onchange \"src/**/*.ts\" -- npm run build",
"test": "jest",
"test:acceptance": "jest --testPathPattern=/tests/acceptance/",
"test:unit": "jest --watchAll --testPathIgnorePatterns=/tests/acceptance/",
"view:coverage": "serve coverage/lcov-report",
"clean": "rm -rf coverage src/**/*.js src/**/*.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparrowBrain/gerald-the-discord-bot.git"
},
"keywords": [
"discord",
"free"
],
"author": "Qwx",
"license": "MIT",
"bugs": {
"url": "https://github.com/SparrowBrain/gerald-the-discord-bot/issues"
},
"homepage": "https://github.com/SparrowBrain/gerald-the-discord-bot#readme",
"devDependencies": {
"@plant/http": "1.0.4",
"@plant/plant": "2.5.0",
"@types/cheerio": "0.22.35",
"@types/express": "5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.0.0",
"jest-environment-node": "^29.7.0",
"onchange": "7.1.0",
"serve": "14.2.4",
"ts-jest": "29.2.5",
"ts-node-dev": "2.0.0",
"typescript": "5.7.2"
},
"dependencies": {
"cheerio": "1.0.0",
"discord.js": "14.17.2",
"dotenv": "16.4.7",
"express": "4.21.2"
}
}