Skip to content

Commit 6101542

Browse files
committed
Init Node.js project with Pnpm. Updated .gitignore. Installed Prettier as dev dependency.
1 parent ea75349 commit 6101542

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77
# Configuration
88
etc/ssh/*
99
!etc/ssh/sshd_config
10+
11+
## Node.js for development
12+
node_modules
13+
14+
# Logs
15+
*.log

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "docker-openvpn-http-ssh-proxy",
3+
"version": "1.0.0",
4+
"description": "Docker compose OpenVPN client with HTTP and SSH proxy",
5+
"private": true,
6+
"scripts": {
7+
"lint": "prettier --write .",
8+
"lint-ci": "prettier . --check",
9+
"test": "echo \"Error: no test specified\" && exit 1"
10+
},
11+
"engines": {
12+
"node": ">=16.9.0",
13+
"pnpm": ">=6.0.0"
14+
},
15+
"packageManager": "pnpm@6.25.1",
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/mrauhu/docker-openvpn-http-ssh-proxy.git"
19+
},
20+
"author": "Sergey N <mrauhu@yandex.ru> (https://mrauhu.ru/)",
21+
"license": "Apache-2.0",
22+
"bugs": {
23+
"url": "https://github.com/mrauhu/docker-openvpn-http-ssh-proxy/issues"
24+
},
25+
"homepage": "https://github.com/mrauhu/docker-openvpn-http-ssh-proxy#readme",
26+
"devDependencies": {
27+
"prettier": "^2.5.1"
28+
}
29+
}

pnpm-lock.yaml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)