repo setup

This commit is contained in:
Jelle van Snik
2022-12-26 21:27:42 +01:00
commit 46ffd9b1ff
11 changed files with 3326 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "simple-proxy",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "vite build",
"lint": "eslint --ext .js lib/",
"lint:fix": "eslint --fix --ext .js lib/",
"lint:report": "eslint --ext .js --output-file eslint_report.json --format json lib/"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1"
}
}