-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "blink-reminder-bot",
"version": "1.0.0",
"description": "A simple Discord bot that reminds certain users to blink every once in a while.",
"main": "index.ts",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.22.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsc && (cd build && pm2 start index.js)",
"start:dev": "nodemon",
"build": "npx tsc",
"lint": "eslint . --ext .ts"
},
"author": "ricetech",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^16.7.1",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.12",
"prettier": "2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}