-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "roboost",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/guidojw/roboost.git"
},
"license": "MIT",
"author": "Guido de Jong",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc -p tsconfig.production.json",
"lint": "eslint src",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@guidojw/bloxy": "^5.7.6",
"@sentry/integrations": "^7.42.0",
"@sentry/node": "^7.42.0",
"axios": "^0.21.1",
"discord.js": "^13.13.1",
"dotenv": "^16.0.3",
"inversify": "^6.0.1",
"lodash": "^4.17.21",
"node-cron": "^3.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.0",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^46.0.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.7.4"
}
}