-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
51 lines (51 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "wumpus-gpt",
"version": "1.1.2",
"private": true,
"license": "MIT",
"author": {
"name": "biscxit",
"url": "https://github.com/biscxit"
},
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "rimraf dist && tsc && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"test": "echo \"No test specified\"",
"version": "npm run build",
"prepare": "husky install"
},
"dependencies": {
"@biscxit/discord-module-loader": "^0.4.2",
"croner": "^6.0.3",
"date-fns": "^2.29.3",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"gpt3-tokenizer": "^1.1.5",
"lodash": "^4.17.21",
"mysql2": "^3.2.0",
"openai": "^3.2.1",
"rate-limiter-flexible": "^2.4.1",
"sequelize": "^6.30.0"
},
"devDependencies": {
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3"
}
}