-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.55 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
{
"name": "boilerplate-service",
"version": "5.2.0",
"description": "A microservice boilerplate that runs optionally as docker or lambda",
"private": false,
"license": "MIT",
"type": "module",
"scripts": {
"start": "node ./dist/start.js",
"dev": "NODE_ENV=dev nodemon ./src/start.ts",
"swag-type": "ts-node openApiTypeGenerator.ts",
"build": "yarn && tsc",
"package": "yarn test && sls package",
"deploy": "yarn test && sls deploy",
"simple-deploy": "sls deploy",
"test": "yarn build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clean": "rm -rf ./node_modules"
},
"keywords": [
"docker",
"lambda",
"service",
"microservice",
"boilerplate",
"serverless",
"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": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"@hapi/boom": "^10.0.1",
"axios": "^1.6.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-openapi-validate": "^0.6.1",
"json-schema-resolve-allof": "^1.5.0",
"jsonpatch": "^3.1.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"moment": "^2.29.4",
"mongoose": "^7.3.3",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"odata-v4-mongodb": "^0.1.12",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"pug": "^3.0.2",
"serverless-http": "^3.2.0",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.4",
"@types/node": "^20.8.7",
"@types/passport": "^1.0.12",
"@types/passport-http-bearer": "^1.0.37",
"@types/uuid": "^9.0.1",
"@types/yamljs": "^0.2.31",
"clipboardy": "^4.0.0",
"eslint": "^8.36.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"json-schema-to-typescript": "^13.1.1",
"mockingoose": "^2.16.2",
"nodemon": "^3.0.1",
"openapi-types": "^12.1.0",
"serverless": "^3.30.1",
"serverless-apigw-binary": "^0.4.4",
"serverless-domain-manager": "^7.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.2.2",
"typescript-eslint": "^0.0.1-alpha.0"
}
}