-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "learn-build-teach-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"start:server": "node dist/server/index.js",
"deploy-commands": "npm run build && node dist/deployCommands.js",
"dev": "ts-node-dev --respawn --debounce=100 --exit-child --files src/app.ts",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"keywords": [],
"author": "@jamesqquick",
"license": "ISC",
"dependencies": {
"@highlight-run/node": "^2.5.3",
"@sendgrid/mail": "^7.7.0",
"@supabase/supabase-js": "^2.1.3",
"airtable": "^0.10.1",
"axios": "^0.21.4",
"cors": "^2.8.5",
"discord.js": "^14.7",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"node-cron": "^2.0.3",
"open-graph-scraper": "^4.11.0",
"quick-chat-bot": "^0.9.1",
"rss-parser": "^3.12.0",
"ts-node": "^10.9.1",
"twitter": "^1.7.1",
"uuid": "^9.0.0"
},
"engines": {
"node": "18"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@faker-js/faker": "6.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "27.4.1",
"@types/node": "^17.0.21",
"@types/node-cron": "^3.0.1",
"@types/open-graph-scraper": "^4.8.1",
"@types/twitter": "^1.7.1",
"@types/uuid": "^9.0.0",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "^7.0.0",
"i": "^0.3.7",
"jest": "^27.2.5",
"jest-mock-extended": "2.0.4",
"npm": "^9.2.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"ts-jest": "27.1.3",
"ts-node-dev": "1.1.8",
"tsconfig-paths": "3.14.0",
"typescript": "^4.6.2"
}
}