2021-05-10 23:50:20 -04:00
|
|
|
{
|
|
|
|
"name": "csc-discord-bot",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2021-05-19 21:44:14 -04:00
|
|
|
"dev": "concurrently \"yarn run-dev\" \"yarn watch\"",
|
2021-05-20 21:25:02 -04:00
|
|
|
"run-dev": "cross-env NODE_ENV=dev nodemon index.ts",
|
2021-05-19 21:44:14 -04:00
|
|
|
"watch": "tsc --watch",
|
|
|
|
"build": "tsc",
|
2021-05-10 23:50:20 -04:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2021-05-19 21:44:14 -04:00
|
|
|
"concurrently": "^6.1.0",
|
2021-05-10 23:50:20 -04:00
|
|
|
"discord.js": "^12.5.3",
|
|
|
|
"dotenv": "^8.2.0",
|
|
|
|
"lodash": "^4.17.21",
|
2021-05-19 21:44:14 -04:00
|
|
|
"moment": "^2.29.1",
|
2021-05-24 20:53:37 -04:00
|
|
|
"sqlite": "^4.0.22",
|
|
|
|
"sqlite3": "^5.0.2",
|
2021-05-19 21:44:14 -04:00
|
|
|
"typescript": "^4.2.4",
|
|
|
|
"winston": "^3.3.3",
|
|
|
|
"winston-daily-rotate-file": "^4.5.5"
|
2021-05-10 23:50:20 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-24 20:53:37 -04:00
|
|
|
"@types/sqlite3": "^3.1.7",
|
2021-05-19 21:44:14 -04:00
|
|
|
"@tsconfig/node14": "^1.0.0",
|
2021-05-10 23:50:20 -04:00
|
|
|
"@types/lodash": "^4.14.168",
|
|
|
|
"@types/node": "^15.0.1",
|
2021-05-19 21:44:14 -04:00
|
|
|
"@types/winston": "^2.4.4",
|
2021-05-10 23:50:20 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.22.0",
|
|
|
|
"@typescript-eslint/parser": "^4.22.0",
|
2021-05-20 21:25:02 -04:00
|
|
|
"cross-env": "^7.0.3",
|
2021-05-10 23:50:20 -04:00
|
|
|
"eslint": "^7.25.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
|
|
"nodemon": "^2.0.7",
|
|
|
|
"prettier": "^2.2.1",
|
|
|
|
"ts-node": "^9.1.1"
|
|
|
|
}
|
|
|
|
}
|