-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"name": "@xboxreplay/slack-bot",
"description": "Share your latest Xbox clips and screenshots on Slack with a single command.",
"version": "1.0.0",
"keywords": [
"xboxreplay",
"slack",
"bot"
],
"repository": {
"type": "git",
"url": "https://github.com/XboxReplay/slack-bot"
},
"license": "MIT",
"author": {
"name": "Alexis Bize",
"email": "[email protected]"
},
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc",
"clean": "rm -rf ./dist",
"serve": "node ./dist/index.js",
"start": "npm run build && npm run serve",
"test": "echo \"No tests specified\""
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/node": "^13.13.5",
"typescript": "^3.5.2"
}
}