forked from kometh0616/fmcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "fmcord",
"version": "1.7.6",
"description": "A Discord bot with Last.fm utilities.",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"launch": "node ./dist/index.js",
"start": "npm run launch",
"lint": "eslint src/**/**.ts src/**/**/*.ts",
"lint-fix": "eslint src/**/**.ts src/**/**/*.ts --fix",
"test": "npm run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"canvas": "^2.6.1",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"eris": "0.13.3",
"express": "^4.17.1",
"lodash": "^4.17.19",
"luxon": "^1.24.1",
"metadata-filter": "^1.3.0",
"patch-package": "^6.2.2",
"pg": "^8.3.0",
"sqlite3": "^4.1.1",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.157",
"@types/luxon": "^1.24.3",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.8.3"
}
}