-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
52
53
54
55
56
57
{
"name": "lion",
"version": "2.0.0",
"description": "Discord bot utilized by UCF Computer Science Discord",
"main": "index.ts",
"scripts": {
"test": "vitest --run --reporter=verbose",
"test:auto": "nodemon -e ts -w ./src/test -x npm run test:serve",
"test:serve": "node -r ts-node/register -r dotenv/config --inspect src/test/tester.ts",
"build": "tsc",
"watch": "nodemon -e ts -w ./src -x npm run watch:serve",
"watch:serve": "node -r ts-node/register --inspect src/index.ts",
"lint": "eslint . --ext .ts",
"generate": "node ./scripts/generate.js --"
},
"author": "joey",
"license": "ISC",
"dependencies": {
"@types/cheerio": "^0.22.29",
"@types/express": "^4.17.12",
"@types/js-levenshtein": "^1.1.0",
"@types/node": "^17.0.41",
"@types/ws": "^7.4.4",
"axios": "^1.7.4",
"bottlejs": "^1.7.2",
"cheerio": "^1.0.0-rc.3",
"discord.js": "^13.8.0",
"dotenv": "^8.2.0",
"express": "^4.21.2",
"js-levenshtein": "^1.1.6",
"mongoose": "^6.13.5",
"ms": "^2.1.2",
"typescript": "^4.3.4",
"vitest": "^0.34.3",
"winston": "^3.3.3",
"winston-papertrail": "^1.0.5",
"words-to-numbers": "^1.5.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/ms": "^0.7.31",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"jest-discordjs-mocks": "^1.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.3.1",
"ts-node": "^10.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}