-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
{
"name": "bafep",
"version": "1.0.0",
"description": "The BAfEP - Kiga Discord integration",
"main": "src/index.ts",
"scripts": {
"start": "node dist/src/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon ./dist/src/index.js\"",
"hard": "rm -rf ./dist && npm run build && npm run dev",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "^10.0.0",
"axios": "^0.24.0",
"chalk": "^4.1.2",
"concurrently": "^7.6.0",
"discord.js": "^14.8.0",
"dotenv": "^10.0.0",
"glob": "^7.2.0",
"mongoose": "^6.8.1",
"node-cron": "^3.0.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/glob": "^7.2.0",
"@types/jest": "^29.2.4",
"@types/node": "^17.0.1",
"@types/node-cron": "^3.0.6",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
}
}