forked from chralp/heyburrito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
{
"name": "heyburrito",
"version": "1.0.0",
"repository": "github.com/chralp/heyburrito",
"scripts": {
"start": "NODE_ENV=production ts-node ./src/server.ts",
"dev": "NODE_ENV=development nodemon --ignore '/test/*.ts' --watch '*.ts' --exec 'ts-node' ./src/server.ts",
"mockDB": "ts-node ./test/lib/mockDatabase.ts",
"test": "NODE_ENV=testing mocha -r ts-node/register test/*-test.ts --exit",
"lint": "eslint --ext .ts ./src/ || exit 0",
"docker-build": "docker build -t chralp/heyburrito . && docker tag chralp/heyburrito chralp/heyburrito",
"docker-push": "docker push chralp/heyburrito"
},
"license": "MIT",
"dependencies": {
"@slack/rtm-api": "^5.0.3",
"@slack/web-api": "^5.6.0",
"bog": "^1.0.2",
"dotenv": "^6.0.0",
"mongodb": "^3.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.7.4",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/dotenv": "^4.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.9",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.19.1",
"mocha": "^5.2.0",
"mongodb-memory-server": "5.2.7",
"nodemon": "^2.0.2",
"proxyquire": "^2.1.3",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0"
}
}