mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
34 lines
905 B
JSON
34 lines
905 B
JSON
{
|
|
"name": "@standardnotes/proxy-server",
|
|
"version": "1.1.0",
|
|
"engines": {
|
|
"node": ">=18.0.0 <19.0.0"
|
|
},
|
|
"private": true,
|
|
"description": "Proxy Server",
|
|
"main": "dist/src/index.js",
|
|
"typings": "dist/src/index.d.ts",
|
|
"repository": "git@github.com:standardnotes/server.git",
|
|
"author": "Karol Sójko <karolsojko@standardnotes.com>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"build": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"start": "yarn node dist/bin/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@types/http-proxy": "^1.17.9",
|
|
"http-proxy": "^1.18.1",
|
|
"newrelic": "^9.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/newrelic": "^9.4.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"eslint": "^8.32.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|