-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "metis-bff",
"version": "0.6.2",
"private": true,
"description": "Project Metis: user and data management layer (backend-for-frontend)",
"main": "index.js",
"scripts": {
"dev": "env NODE_ENV=development node index.js",
"start": "env NODE_ENV=production node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"oauth": "cd tests/oauth && node server",
"test:oauth": "env OAUTH_TEST=true npm start",
"format": "prettier --ignore-path .gitignore --write '**/*.js'",
"prepare": "husky install",
"apidoc": "apidoc -i routes",
"apidoc-swagger": "apidoc-swagger -i routes",
"knex": "knex --",
"db-migrate": "NODE_ENV=development knex migrate:latest",
"db-seed": "NODE_ENV=development knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basf/metis-bff.git"
},
"dependencies": {
"apidoc": "^1.2.0",
"apidoc-swagger": "^0.3.2",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"express": "^4.17.3",
"express-bff": "^1.1.0",
"http-status-codes": "^2.2.0",
"ini": "^2.0.0",
"knex": "^2.5.1",
"mjml": "^4.12.0",
"nodemailer": "^6.9.3",
"passport": "0.5.2",
"passport-github2": "^0.1.12",
"passport-http-bearer": "^1.0.1",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.7.0",
"passport-orcid": "^0.0.4",
"pg": "^8.7.3",
"prettier": "^2.3.1"
},
"devDependencies": {
"eventsource": "^2.0.2",
"husky": "^8.0.0"
},
"apidoc": {
"description": "Project Metis: public API, as implemented in a backend-for-frontend",
"title": "Metis API",
"sampleUrl": "http://localhost:3000",
"template": {
"withCompare": false,
"showRequiredLabels": false,
"aloneDisplay": true
},
"order": [
"Users",
"Data",
"Calculations",
"Collections",
"Ping"
]
}
}