-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1014 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1014 Bytes
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
{
"name": "R3LM",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start:server": "node .",
"start:client": "cd client && npm run start",
"start:double": "npm run start:server && npm run start:client",
"start:single": "npm run start:server & npm run start:client",
"start": "(npm run start:double) || (npm run start:single)",
"posttest": "npm run lint && nsp check"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.5.2",
"helmet": "^3.10.0",
"loopback": "^3.28.0",
"loopback-boot": "^2.28.0",
"loopback-component-explorer": "^5.4.0",
"loopback-connector-mongodb": "^3.4.1",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0"
},
"devDependencies": {
"eslint": "^9.39.1",
"eslint-config-loopback": "^8.0.0",
"nsp": "^2.8.1"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "R3LM"
}