-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "dns-dev",
"version": "1.0.0",
"description": "Simple dev DNS server, work with docker and traefik",
"main": "server.js",
"scripts": {
"dev": "nodemon ./server.js",
"build": "pkg server.js --targets node16-linux-x64,node16-win-x64 --compress --output ./dist/dev-dns"
},
"author": {
"name": "Georgy Malkov",
"url": "https://github.com/goshander"
},
"homepage": "https://github.com/goshander/dev_dns",
"repository": "https://github.com/goshander/dev_dns",
"_moduleAliases": {
"~": "."
},
"dependencies": {
"chokidar": "^3.5.2",
"cli-select": "^1.1.2",
"dns2": "^2.0.1",
"dockerode": "^3.3.1",
"easy-auto-launch": "^6.0.0",
"is-ip": "^3.1.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.14",
"pkg": "^5.5.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}