This repository has been archived by the owner on Nov 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 3.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "basecamp-github-chatbot",
"version": "0.2.0",
"description": "A more advanced Basecamp chatbot to integrate GitHub and Basecamp",
"main": "index.js",
"scripts": {
"_build": "rm -rf dist && npx babel app --out-dir dist --copy-files --extensions \".ts\"",
"_local:run": "NODE_ENV=development node dist/index.js",
"_production:run": "NODE_ENV=production node dist/forever.js",
"dev:build": "docker-compose -f docker/docker-compose.yml -f docker/docker-compose.dev.override.yml build",
"dev:run": "docker-compose -f docker/docker-compose.yml -f docker/docker-compose.dev.override.yml up",
"production:build": "docker-compose -f docker/docker-compose.yml -f docker/docker-compose.prod.override.yml build",
"production:run": "docker-compose -f docker/docker-compose.yml -f docker/docker-compose.prod.override.yml up",
"test": "concurrently --names \"unit,integration\" -s \"all\" -c \"blue,green\" \"npm run test:unit\" \"npm run test:integration\"",
"test:unit": "NODE_ENV=test jest --testPathPattern=\".+tests/unit/.+.spec.ts\"",
"test:integration": "NODE_ENV=test jest --testPathPattern=\".+tests/integration/.+.spec.ts\" --runInBand",
"lint": "npx eslint --max-warnings 0 app/**/*.ts",
"format": "npx prettier --write \"{app,tests}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git@github.com:foundersclubsoftware/Basecamp-Github_Chatbot.git"
},
"keywords": [
"basecamp",
"github",
"chat",
"bot",
"chatbot"
],
"author": "thrymgjol",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/foundersclubsoftware/Basecamp-Github_Chatbot/issues"
},
"homepage": "https://github.com/foundersclubsoftware/Basecamp-Github_Chatbot#readme",
"dependencies": {
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"express": "^4.17.1",
"forever-monitor": "^1.7.1",
"helmet": "^3.18.0",
"jsonschema": "^1.2.4",
"yargs": "^13.2.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.6.3",
"@types/express": "^4.16.1",
"@types/forever-monitor": "^1.7.4",
"@types/helmet": "0.0.43",
"@types/jest": "^24.0.18",
"@types/supertest": "^2.0.8",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"axios-mock-adapter": "^1.17.0",
"babel-plugin-module-resolver": "^3.2.0",
"concurrently": "^4.1.2",
"eslint": "^5.16.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^2.4.0",
"jest": "^24.9.0",
"jest-watch-typeahead": "^0.4.0",
"lint-staged": "^8.1.7",
"node-html-parser": "^1.1.16",
"prettier": "^1.17.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && lint-staged"
}
},
"lint-staged": {
"app/**/*.ts": [
"npx eslint"
],
"*.ts": [
"npm run format",
"git add"
]
}
}