This repository was archived by the owner on Feb 18, 2024. It is now read-only.
forked from bistaastha/badging-bot
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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
{
"name": "badging-bot",
"version": "1.0.0",
"private": true,
"description": "A github app that automates some of the review processes for CHAOSS DEI Badging applications",
"author": "Aastha Bist <abist119@gmail.com>",
"license": "ISC",
"repository": "https://github.com/badging/badging-bot.git",
"homepage": "https://github.com/badging/badging-bot",
"bugs": "https://github.com/badging/badging-bot/issues",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"dev": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js",
"prepare": "husky install",
"test": "npm run format && mocha"
},
"dependencies": {
"@octokit/core": "4.2.0",
"dotenv": "16.0.0",
"express": "4.18.1",
"jsonwebtoken": "9.0.0",
"mongoose": "6.5.4",
"octokit": "2.0.3",
"winston": "3.8.2",
"winston-daily-rotate-file": "4.7.1"
},
"devDependencies": {
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^8.0.0",
"lint-staged": "12.3.7",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"smee-client": "1.2.3"
},
"lint-staged": {
".": [
"npm run format"
]
}
}