-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ue-content",
"version": "3.1.6",
"description": "A microservice to store and serve content to a UI.",
"scripts": {
"start": "node ./src/start.js",
"dev": "nodemon ./src/start.js",
"dist": "nodemon ./dist/start.js",
"build": "yarn && babel src -d dist",
"package": "yarn && babel src -d dist && sls package",
"deploy": "yarn && babel src -d dist && sls deploy",
"test": "mocha --recursive './test/*Test.js' --compilers js:babel-core/register",
"lintFix": "eslint . --fix"
},
"contributors": [
{
"name": "Bo Motlagh",
"email": "bmotlagh@unitedeffects.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/UnitedEffects/UE-Content_Srvc.git"
},
"keywords": [
"ue-auth",
"auth2.0",
"token",
"unitedeffects",
"api",
"content",
"cms",
"html",
"images"
],
"author": "Bo Motlagh <borzou@theboeffect.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UnitedEffects/UE-Content_Srvc/issues"
},
"homepage": "https://unitedeffects.com",
"dependencies": {
"accesscontrol": "^2.2.1",
"aws-sdk": "^2.177.0",
"axios": "^0.21.1",
"babel-core": "^6.25.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.16.1",
"cookie-parser": "^1.4.3",
"debug": "^3.0.0",
"express": "^4.16.2",
"express-openapi-validate": "^0.4.4",
"install": "^0.10.1",
"joi": "^13.0.2",
"json-schema-ref-parser": "^6.0.3",
"json-schema-resolve-allof": "^1.5.0",
"moment": "^2.19.1",
"mongoose": "^5.9.4",
"morgan": "^1.8.2",
"multer": "^1.4.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"pug": "^3.0.1",
"serverless-http": "^1.6.0",
"uuidv4": "^3.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"chai": "^4.1.1",
"chai-http": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.2.1",
"mocha": "^3.3.0",
"serverless-apigw-binary": "^0.4.4",
"serverless-domain-manager": "^2.6.5"
},
"resolutions": {
"sinon/*/lodash": "^4.17.13",
"mocha/*/growl": "^1.10.0",
"mocha/*/diff": "^3.5.0",
"chai-http/*/superagent": "^3.7.0"
}
}