jillo-bot/package.json

38 lines
971 B
JSON
Raw Normal View History

2022-06-08 01:28:20 +02:00
{
2022-07-19 20:48:02 +02:00
"name": "jillo",
2022-06-08 01:28:20 +02:00
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2023-10-29 10:45:38 +01:00
"start": "tsc && node deploy-commands.cjs && node dist/index.js",
"dev": "tsc && node dist/index.js",
2022-06-08 02:57:15 +02:00
"build": "tsc",
"deploy-commands": "tsc && node deploy-commands.cjs"
2022-06-08 01:28:20 +02:00
},
"author": "oatmealine",
"license": "AGPL-3.0",
"dependencies": {
2023-11-11 01:54:11 +01:00
"chalk": "^4.1.2",
2023-10-29 10:45:38 +01:00
"d3-array": "^2.12.1",
2023-11-16 11:46:01 +01:00
"discord.js": "^14.14.1",
2023-11-17 21:11:50 +01:00
"express": "^4.18.2",
2023-10-29 12:20:49 +01:00
"got": "^11.8.6",
"knex": "^3.0.1",
2023-11-13 21:54:09 +01:00
"outdent": "^0.8.0",
2022-07-16 17:33:30 +02:00
"parse-color": "^1.0.0",
2023-11-11 01:54:11 +01:00
"pretty-bytes": "^5.6.0",
"random-seed": "^0.3.0",
"sqlite3": "^5.1.6"
2022-06-08 02:57:15 +02:00
},
"devDependencies": {
2023-11-16 11:46:01 +01:00
"@types/d3-array": "^3.2.1",
2023-11-17 21:11:50 +01:00
"@types/express": "^4.17.21",
2023-11-16 11:46:01 +01:00
"@types/parse-color": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"discord-api-types": "^0.37.63",
"eslint": "^8.53.0",
2023-10-29 12:20:49 +01:00
"typescript": "5.2.2"
2022-06-08 01:28:20 +02:00
}
}