This repository was archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "june-bot",
"version": "0.1.0",
"description": "A cute bot.",
"author": "Paul Hansa",
"license": "AGPL-3.0-or-later",
"repository": {
"url": "https://github.com/biggestcookie/June-bot"
},
"scripts": {
"build": "tsc -b",
"prestart": "npm run build && npm run commands:prod",
"start": "node dist/app.js",
"dev": "ts-node-dev --inspect -- src/app.ts",
"deploy:commands": "ts-node src/deploy.ts",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"lint:fix": "eslint ./ --ext .js,.ts --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,ts,md,json}\" ",
"lint": "npm run lint:format && npm run lint:fix"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@google-cloud/dialogflow": "^4.6.0",
"@prisma/client": "^3.10.0",
"axios": "^0.26.1",
"discord.js": "^13.8.0",
"dotenv": "^16.0.0",
"node-schedule": "^2.1.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/node": "^16.11.26",
"@types/node-schedule": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1",
"prisma": "^3.10.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/ban-types": "off"
}
}
}