mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
655 B
33 lines
655 B
{
|
|
"release": "11",
|
|
"name": "wg-easy",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"serve": "DEBUG=Server,WireGuard nodemon server.js",
|
|
"serve-with-password": "PASSWORD=wg npm run serve",
|
|
"lint": "eslint ."
|
|
},
|
|
"author": "Emile Nijssen",
|
|
"license": "GPL",
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"express": "^4.18.2",
|
|
"express-session": "^1.17.3",
|
|
"qrcode": "^1.5.3",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-athom": "^3.1.1"
|
|
},
|
|
"nodemonConfig": {
|
|
"ignore": [
|
|
"www/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "18"
|
|
}
|
|
}
|
|
|