forked from open-certs/oc-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "oc-backend",
"version": "0.0.1",
"private": true,
"main": "./bin/www",
"engines": {
"node": ">=10.0.0 <17.0.0"
},
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest test/",
"format": "eslint . --fix",
"checkFormat": "eslint .",
"quality": "npm run checkFormat && npm run test -- --silent",
"prepare": "husky install"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"axios": "^0.26.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-validation": "^3.0.8",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"morgan": "~1.9.1",
"passport": "^0.5.2",
"passport-bitbucket-oauth2": "^0.1.2",
"passport-github2": "^0.1.12",
"passport-gitlab2": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"newman": "^5.3.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}