-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 KB
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
51
52
53
54
{
"name": "chill-bot",
"description": "A super chill bot",
"author": "lydian-lights",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "ts-node --transpile-only -r tsconfig-paths/register src/index.ts",
"start:dev": "ts-node -r tsconfig-paths/register src/index.ts",
"dev": "nodemon -e ts --exec \"npm run start:dev\"",
"db:create:dev": "echo DROP DATABASE IF EXISTS chillbot_dev; CREATE DATABASE chillbot_dev; | psql -U postgres",
"db:migrate": "knex migrate:latest",
"db:migrate:make": "knex migrate:make -x ts",
"db:reset:dev": "npm run db:create:dev && npm run db:migrate",
"db:print-schema": "ts-node -r tsconfig-paths/register scripts/print-schema.ts",
"heroku": "set HEROKU_APP=lydian-chill-bot&& heroku"
},
"engines": {
"node": "v16.11.1"
},
"dependencies": {
"axios": "^0.21.4",
"canvas": "^2.11.0",
"discord.js": "^14.8.0",
"dotenv": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"gifencoder": "^2.0.1",
"gifuct-js": "^2.1.2",
"glob": "^7.2.3",
"knex": "^2.4.2",
"moment": "^2.29.4",
"openai": "^3.2.1",
"pg": "^8.10.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.5",
"vm2": "^3.9.14"
},
"devDependencies": {
"@types/gifencoder": "^2.0.1",
"@types/glob": "^7.2.0",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"eslint": "^8.23.1",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.22"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}