-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "serverless-loopback",
"version": "0.0.0",
"description": "Sample serverless project using loopback.",
"author": "BotBits (sm) (https://github.com/botbits)",
"keywords": [
"serverless",
"loopback",
"lambda",
"aws"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/botbits/serverless-loopback.git"
},
"bugs": {
"url": "https://github.com/botbits/serverless-loopback/issues"
},
"homepage": "https://github.com/botbits/serverless-loopback#readme",
"engines": {
"node": ">=6"
},
"main": "lambda-wrapper.js",
"scripts": {
"lint": "eslint .",
"lb": "node_modules/loopback-cli/bin/loopback-cli.js",
"lb-model": "node_modules/loopback-cli/bin/loopback-cli.js model",
"sls-deploy": "node_modules/serverless/bin/serverless deploy --verbose",
"sls-cleanup": "node_modules/serverless/bin/serverless remove --verbose",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^3.21.1",
"loopback": "^3.28.0",
"loopback-boot": "^2.27.1",
"loopback-component-explorer": "^6.3.1",
"loopback-connector-mysql": "^5.3.1",
"serve-favicon": "^2.0.1",
"serverless-http": "^1.8.0",
"strong-error-handler": "^3.2.0",
"snyk": "^1.1111.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-loopback": "^12.0.0",
"loopback-cli": "^5.2.0",
"serverless": "^1.32.0"
},
"snyk": true
}