-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "ranger",
"version": "0.0.99",
"description": "",
"author": "Mike Fix",
"license": "Apache-2.0",
"repository": "https://github.com/reporanger/ranger.git",
"scripts": {
"dev": "nodemon --exec \"probot run ./index.js\"",
"start": "probot run --sentry-dsn $SENTRY_DSN --log-level $LOG_LEVEL --redis-url $REDIS_URL ./index.js",
"test": "jest",
"lint": "eslint src",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"redis:clear": "redis-cli flushall",
"deploy": "git push heroku main",
"site": "cd site && live-server"
},
"dependencies": {
"@sentry/node": "^6.3.1",
"analytics-node": "^4.0.1",
"async-sema": "^3.1.0",
"bad-words": "^3.0.4",
"bee-queue": "^1.3.1",
"lodash.merge": "^4.6.2",
"moment": "^2.29.1",
"ms": "^2.1.3",
"probot": "10.17.2",
"rexrex": "^1.3.0",
"smee-client": "^1.2.2",
"windsor-node": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"live-server": "^1.2.1",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=12"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --write"
]
}
}