-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
{
"author": "Thomas Northall-Little",
"bugs": {
"url": "https://github.com/stemn/stemn/issues"
},
"dependencies": {
"@slack/client": "^4.8.0",
"@slack/events-api": "^2.1.1",
"@slack/interactive-messages": "^1.0.2",
"ajv": "^6.9.1",
"express": "^4.16.2",
"helmet": "^3.15.1",
"lodash": "^4.17.11",
"morgan": "^1.9.0",
"pjson": "^1.0.9",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"description": "",
"devDependencies": {
"@stemn/jest-config": "^0.0.10",
"@stemn/tsconfig": "^0.0.6",
"@stemn/tslint-config": "0.0.2",
"@types/bluebird": "^3.5.23",
"@types/express": "^4.11.1",
"@types/helmet": "^0.0.42",
"@types/jest": "^24.0.3",
"@types/lodash": "^4.14.120",
"@types/morgan": "^1.7.35",
"@types/node": "^11.9.3",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.7",
"codecov": "^3.2.0",
"jest": "^24.1.0",
"quicktype": "^15.0.174",
"supertest": "^3.4.2",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"tsc-watch": "^2.1.1",
"tslint": "^5.11.0",
"typescript": "^3.3.3"
},
"homepage": "https://github.com/stemn/stemn#readme",
"license": "MIT",
"main": "build",
"name": "@stemn/stemn-slackbot",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/stemn/stemn.git"
},
"scripts": {
"build": "tsc",
"build:schemas": "./scripts/generateSchemas.sh",
"build:watch": "yarn build --watch",
"docker:restart": "yarn docker:stop && yarn docker:start",
"docker:start": "docker-compose -f docker-compose.yaml -f docker-compose-dev.yaml -p stemn-slackbot up -d",
"docker:stop": "docker-compose -f docker-compose.yaml -f docker-compose-dev.yaml down",
"lint": "yarn tsc --noEmit",
"setup:test:environment": "ts-node scripts/setupTestEnvironment",
"start": "node build/src/app --inspect=0.0.0.0:9229",
"start:watch": "tsc-watch --onSuccess 'yarn start'",
"terminal": "tmuxinator local",
"test": "jest",
"test:watch": "yarn test --watch"
},
"version": "1.0.0"
}