jillo-bot/package.json

47 lines
1.2 KiB
JSON
Raw Permalink 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-19 21:28:31 +01:00
"@discordjs/core": "^1.1.1",
"@discordjs/rest": "^2.2.0",
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",
2024-03-18 20:19:14 +01:00
"diff": "^5.2.0",
2023-11-16 11:46:01 +01:00
"discord.js": "^14.14.1",
2024-03-18 14:23:42 +01:00
"express": "^4.18.3",
2023-11-19 22:11:55 +01:00
"express-handlebars": "^7.1.2",
2023-10-29 12:20:49 +01:00
"got": "^11.8.6",
2024-03-18 14:23:42 +01:00
"knex": "^3.1.0",
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",
2024-03-18 14:23:42 +01:00
"sqlite3": "^5.1.7",
2023-11-19 21:28:31 +01:00
"tough-cookie": "^4.1.3",
"uid-safe": "^2.1.5"
2022-06-08 02:57:15 +02:00
},
"devDependencies": {
2023-11-16 11:46:01 +01:00
"@types/d3-array": "^3.2.1",
2024-03-18 20:19:14 +01:00
"@types/diff": "^5.0.9",
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",
2023-11-19 21:28:31 +01:00
"@types/tough-cookie": "^4.0.5",
"@types/uid-safe": "^2.1.5",
2024-03-18 14:23:42 +01:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"discord-api-types": "^0.37.74",
"eslint": "^8.57.0",
2023-10-29 12:20:49 +01:00
"typescript": "5.2.2"
2022-06-08 01:28:20 +02:00
}
}