-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 KB
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": "autorrent",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"posttest": "npm run lint && nsp check",
"precommit": "lint-staged"
},
"dependencies": {
"body-parser": "^1.17.2",
"compression": "^1.0.3",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.5.2",
"express-flash": "^0.0.2",
"express-session": "^1.15.3",
"helmet": "^1.3.0",
"lodash": "^4.17.4",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-component-passport": "^3.3.0",
"loopback-connector-mongodb": "^1.18.1",
"passport-oauth2": "^1.4.0",
"request": "^2.81.0",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"husky": "^0.13.4",
"lint-staged": "^4.0.0",
"nsp": "^2.1.0",
"prettier": "^1.4.4"
},
"repository": {
"type": "",
"url": ""
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
]
},
"license": "UNLICENSED",
"description": "autorrent"
}