-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 987 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
{
"name": "slack-cahbot",
"version": "1.0.0",
"description": "A Slack app that lets you play Cards Against Humanity with others",
"main": "index.js",
"scripts": {
"build": "gulp lint && gulp build-app",
"compile": "tsc",
"start": "concurrently \"tsc --watch\" \"nodemon bin/www --watch ./build --watch ./bin/www --delay 1\"",
"deploy": "sh .travis/deploy.sh"
},
"author": "Jack Cai",
"license": "ISC",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.2.0",
"nodemon": "^1.11.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"concurrently": "^3.4.0",
"@types/body-parser": "^1.16.3",
"@types/express": "^4.0.35",
"@types/request": "0.0.46",
"@types/request-promise-native": "^1.0.5"
},
"dependencies": {
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"morgan": "^1.7.0",
"path": "^0.12.7",
"request": "^2.81.0"
}
}