forked from kolobok86/dns-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.52 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.52 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
{
"name": "dns-proxy",
"version": "1.0.0",
"description": "This is easy DNS-server with web-interface for debug mobile applications or other.",
"main": "server.js",
"dependencies": {
"express": "^4.17.1",
"ip": "^1.1.5"
},
"scripts": {
"server": "sudo node server.js",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flexnst/dns-proxy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flexnst/dns-proxy/issues"
},
"homepage": "https://github.com/flexnst/dns-proxy#readme",
"devDependencies": {
"axios": "^0.20.0",
"cross-env": "^7.0.2",
"laravel-mix": "^5.0.5",
"material-icons": "^0.3.1",
"materialize-css": "^1.0.0-rc.2",
"npm": "^6.14.8",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.11",
"sass-loader": "^8.0.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
}
}