forked from theBoEffect/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.34 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
{
"name": "boilerplate-service",
"version": "2.0.5",
"description": "A microservice boilerplate that runs optionally as docker or lambda",
"private": false,
"license": "MIT",
"scripts": {
"start": "node ./dist/start.js",
"dev": "NODE_ENV=dev nodemon ./src/debug/start.js",
"build": "babel src -d dist",
"package": "yarn test && yarn build && sls package",
"deploy": "yarn test && yarn build && sls deploy",
"simple-deploy": "sls deploy",
"test": "yarn && jest",
"clean": "rm -rf ./node_modules"
},
"keywords": [
"docker",
"lambda",
"service",
"microservice",
"boilerplate",
"oidc",
"core-eos",
"unitedeffects"
],
"author": "theBoEffect",
"person": {
"name": "Bo Motlagh",
"email": "[email protected]",
"url": "https://theboeffect.com"
},
"homepage": "https://github.com/theboeffect",
"logo": "https://cdn-images-1.medium.com/max/280/1*[email protected]",
"dependencies": {
"@hapi/boom": "^9.1.0",
"axios": "^0.21.2",
"cookie-parser": "^1.3.5",
"express": "^4.17.1",
"express-openapi-validate": "^0.6.1",
"json-schema-ref-parser": "^9.0.9",
"json-schema-resolve-allof": "^1.5.0",
"jsonpatch": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"lodash": "^4.17.15",
"moment": "^2.29.4",
"mongoose": "^5.9.4",
"morgan": "^1.9.1",
"node-cache": "^5.1.2",
"odata-v4-mongodb": "^0.1.12",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"pug": "^3.0.1",
"serverless-http": "^2.3.2",
"uuid": "^8.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.4",
"mockingoose": "^2.13.2",
"nodemon": "^2.0.13",
"regenerator-runtime": "^0.13.3",
"serverless": "^3.23.0",
"serverless-apigw-binary": "^0.4.4",
"serverless-domain-manager": "^5.1.3",
"supertest": "^6.1.3"
},
"resolutions": {
"lodash": "^4.17.15",
"ansi-regex": "^5.0.1"
},
"engines": {
"yarn": ">= 1.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
}
}