-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "toogoodtogobot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"test": "jest",
"style-check": "prettier -c src/**/*.ts && eslint src/**/*.ts --quiet",
"style-fix": "prettier -w src/**/*.ts && eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackie-z528/TooGoodToGoBot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackie-z528/TooGoodToGoBot/issues"
},
"homepage": "https://github.com/jackie-z528/TooGoodToGoBot#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/conf": "^3.0.0",
"@types/express": "^4.17.17",
"@types/koa__router": "^12.0.0",
"@types/mongodb": "^4.0.7",
"@types/node-cron": "^3.0.7",
"@types/superagent": "^4.1.16",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"serverless-offline": "^12.0.4",
"serverless-plugin-typescript": "^2.1.4",
"typescript": "5.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"got-scraping": "^3.2.15",
"lodash": "^4.17.21",
"migrate-mongo": "^9.0.0",
"mongodb": "^5.1.0",
"node-cron": "^3.0.2",
"serverless-http": "^3.1.1",
"tough-cookie": "^4.1.2"
}
}