-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "heyburrito",
"version": "0.0.1",
"repository": "github.com/chralp/heyburrito",
"scripts": {
"start": "ts-node ./app/server.ts",
"test": "mocha -r ts-node/register test/* || true",
"lint": "tslint -t stylish -c tslint.json lib/*.ts types/*.ts test/*.ts",
"lintFix": "tslint -t stylish -c tslint.json lib/*.ts types/*.ts test/*.ts --fix",
"docker-build": "docker build -t jrewerts/heyburrito . && docker tag jrewerts/heyburrito jrewerts/heyburrito",
"docker-push": "docker push jrewerts/heyburrito"
},
"dependencies": {
"@slack/client": "^4.12.0",
"@types/dotenv": "^4.0.3",
"bog": "^1.0.2",
"dotenv": "^6.0.0",
"git-clone-repo": "^1.0.0",
"mongodb": "^3.2.6",
"ts-node": "^7.0.1",
"typescript": "^3.5.1",
"ws": "^6.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.8",
"babel-eslint": "^8.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.0"
}
}