-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 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
48
49
50
{
"name": "ems-api",
"version": "1.0.0",
"description": "A Node / Express powered REST API for the Enquiry Management System",
"main": "index.js",
"scripts": {
"test": "jest --verbose"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PTFS-Europe/ems-api.git"
},
"author": "Andrew Isherwood <andrew.isherwood@ptfs-europe.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PTFS-Europe/ems-api/issues"
},
"homepage": "https://github.com/PTFS-Europe/ems-api#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-openapi-validator": "^4.2.1",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"memorystore": "^1.6.4",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-saml": "^1.3.5",
"passport-twitter": "^1.0.4",
"uuid": "^8.3.1",
"ws": "^7.3.1"
},
"devDependencies": {
"eslint": "^7.11.0",
"jest": "^26.6.0"
}
}