-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "localdns",
"version": "1.3.1",
"description": "Dynamic DNS service",
"license": "MIT",
"repository": "JoeBiellik/localdns",
"homepage": "https://github.com/JoeBiellik/localdns",
"author": "Joe Biellik <contact@joebiellik.com> (https://joebiellik.com/)",
"contributors": [
"Joe Biellik <contact@joebiellik.com> (https://joebiellik.com/)",
"Mat Lomax <contact@matlomax.com> (https://matlomax.com/)"
],
"bugs": {
"email": "contact@joebiellik.com",
"url": "https://github.com/JoeBiellik/localdns/issues"
},
"keywords": [
"dynamic dns",
"ddns"
],
"main": "server.js",
"scripts": {
"dns-server": "node dns-server.js",
"watch": "nodemon -L -e js,json -i ./public",
"watch dns-server": "nodemon -L -e js,json -i ./public dns-server.js",
"lint": "eslint . && pug-lint ./views"
},
"dependencies": {
"body-parser": "^1.18.2",
"cidr_match": "0.0.7",
"co-express": "^2.0.0",
"compression": "^1.7.2",
"config": "^3.0.0",
"connect-mongo": "^2.0.0",
"dnsd": "^0.9.6",
"express": "^4.16.3",
"express-session": "^1.15.6",
"http-auth": "^3.2.3",
"jstransformer-marked": "^1.0.3",
"mongoose": "^5.0.10",
"mongoose-bcrypt": "^1.5.0",
"mongoose-unique-validator": "^2.0.0",
"net-ping": "^1.2.1",
"pug": "^2.0.1"
},
"devDependencies": {
"eslint": "^5.0.0",
"nodemon": "^1.17.2",
"pug-lint": "^2.5.0"
}
}