-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "srcbot",
"version": "1.0.0",
"description": "Discord bot for managing Squadron Recruitment Center",
"keywords": [
"typescript",
"discord",
"discord.js"
],
"homepage": "https://github.com/elite-kode/srcbot#readme",
"bugs": {
"url": "https://github.com/elite-kode/srcbot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elite-kode/srcbot.git"
},
"license": "Apache-2.0",
"author": "Sayak Mukhopadhyay <[email protected]>",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"prepare": "husky install",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config tests/jest-e2e.json"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@bugsnag/js": "^7.11.0",
"@bugsnag/plugin-express": "^7.11.0",
"debug": "^4.3.1",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"kodeblox": "^0.2.0",
"lodash": "^4.17.21",
"mongoose": "^6.0.10",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.172",
"@types/mongoose-paginate": "^5.0.8",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"pm2": "^4.5.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}