forked from r-anime/misato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.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
{
"name": "discord-mod-bot",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext js,ts",
"lint:fix": "eslint src --ext js,ts --fix",
"start": "ts-node src/index.js",
"start:prod": "NODE_ENV=production ts-node --transpile-only src/index.js"
},
"license": "MIT",
"dependencies": {
"@geo1088/eslint-config-ts": "^2.0.0",
"another-logger": "^2.0.1",
"connect-mongo": "^3.2.0",
"convert-units": "^2.3.4",
"dotenv": "^16.3.1",
"eris": "^0.17.2",
"express-session": "^1.17.0",
"mongodb": "^3.5.5",
"node-fetch": "^2.6.7",
"polka": "^1.0.0-next.11",
"rss-parser": "^3.13.0",
"ts-node": "^10.8.1",
"yuuko": "^2.3.2"
},
"devDependencies": {
"@types/express-session": "^1.17.4",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"migrate": "^1.6.2",
"typescript": "^4.7.4"
}
}