-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "lb3-api",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"test": "jest --verbose --forceExit --runInBand --detectOpenHandles"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^3.10.0",
"is-base64": "^1.1.0",
"loopback": "^3.22.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^6.2.0",
"loopback-connector-mysql": "^5.4.4",
"multer": "^1.4.2",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^3.0.0"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "lb3-api"
}