soiz1 commited on
Commit
5d0f8bd
·
verified ·
1 Parent(s): 44ccc4b

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +14 -0
package.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "web-proxy",
3
+ "version": "1.0.0",
4
+ "description": "Simple HTML rewriting proxy in Node.js",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "node index.js"
8
+ },
9
+ "dependencies": {
10
+ "cheerio": "^1.0.0-rc.12",
11
+ "express": "^4.18.2",
12
+ "node-fetch": "^3.3.2"
13
+ }
14
+ }