-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "hs_discord_bot_api",
"version": "0.0.1",
"description": "The API for the HackerSuite Discord bot",
"scripts": {
"build": "rimraf dist && tsc",
"test": "npm run lint",
"start": "npm run build && node dist | pino-pretty",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unicsmcr/hs_discord_bot_api.git"
},
"keywords": [
"Discord",
"Hackathon",
"StudentHack",
"API"
],
"author": "Amish Shah <amishshah.2k@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unicsmcr/hs_discord_bot_api/issues"
},
"homepage": "https://github.com/unicsmcr/hs_discord_bot_api#readme",
"devDependencies": {
"@types/node": "^14.0.13",
"@types/pino": "^6.3.0",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@unicsmcr/eslint-config": "0.0.1",
"eslint": "^7.3.1",
"pino-pretty": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
},
"eslintConfig": {
"extends": "@unicsmcr",
"parserOptions": {
"project": "tsconfig.eslint.json"
}
},
"dependencies": {
"@spectacles/rest": "^0.8.3",
"@types/express": "^4.17.6",
"@types/node-fetch": "^2.5.7",
"@unicsmcr/hs_auth_client": "^3.1.0",
"axios": "^0.21.2",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"form-data": "^3.0.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"pino": "^6.3.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25"
}
}