-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1000 Bytes
/
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
{
"name": "nodejs-proxy",
"version": "1.0.0",
"description": "A Basic nodejs proxy implementation which will be running in port 8080. If you want the port to be changed just change the port variable in the code.",
"main": "index.js",
"type": "module",
"scripts": {
"devstart": "npx nodemon .",
"start": "node .",
"lint": "prettier --check --write . && eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/231tr0n/nodejs-proxy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/231tr0n/nodejs-proxy/issues"
},
"homepage": "https://github.com/231tr0n/nodejs-proxy#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"forever": "^4.0.3",
"nodemon": "^3.1.0",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5"
}
}