forked from CarelessLlama/Blue-Elephant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "blue-elephant",
"version": "1.0.0",
"description": "Blue Elephant Grouping Bot",
"main": "src/index.ts",
"author": "The Careless Llama (https://github.com/CarelessLlama)",
"homepage": "https://github.com/nikele2001/Blue-Elephant",
"dependencies": {
"@vercel/node": "^3.0.12",
"dotenv-cli": "^7.3.0",
"mongodb": "^6.3.0",
"mongoose": "^8.0.3",
"telegraf": "^4.15.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vercel/ncc": "^0.38.1",
"debug": "^4.3.4",
"eslint": "^8.49.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"mockingoose": "^2.16.2",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"scripts": {
"dev": "DEBUG=bot* dotenv -- nodemon -e ts -x ts-node src/index.ts",
"devWindows": "@powershell -Command $env:DEBUG='bot*';dotenv -- -- nodemon -e ts -x ts-node src/index.ts",
"build": "ncc build src/index.ts -o public -m",
"test": "jest",
"prettier": "prettier --write 'src/**/*.ts'",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\""
},
"compilerOptions": {
"types": [
"jest"
]
}
}