-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "bot-nish-v2",
"version": "1.0.0",
"description": "discord bot built with typescript",
"repository": {
"type": "git",
"url": "https://github.com/nishant/bot-nish-v2"
},
"author": "Nishant Arora",
"license": "MIT",
"scripts": {
"start": "npm run build && node dist/src/server.js",
"launch": "node dist/src/server.js",
"build": "npm run build-ts",
"test": "jest --forceExit --coverage --verbose",
"lint": "eslint \"**/*.ts\"",
"format": "prettier --write .",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"debug-attach": "npm run build && npm run debug",
"debug": "node --inspect dist/src/server.js",
"serve-debug": "nodemon --inspect dist/src/server.js"
},
"dependencies": {
"axios": "^0.21.0",
"discord.js": "12.3.x",
"dotenv": "^8.2.0",
"jikants": "^1.2.13",
"tslog": "^2.11.1"
},
"devDependencies": {
"@types/jest": "26.0.x",
"@types/node": "14.11.x",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-unicorn": "^22.0.0",
"istanbul-api": "3.0.x",
"istanbul-reports": "3.0.x",
"jest": "26.4.x",
"prettier": "2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"ts-jest": "26.4.x",
"ts-mockito": "2.6.x",
"ts-node": "9.0.x",
"tslint": "6.1.x",
"typescript": "4.0.x"
}
}