@staticcms/proxy-server-lite
Version:
Proxy server to be used with Static CMS proxy backend
72 lines (71 loc) • 1.84 kB
JSON
{
"name": "@staticcms/proxy-server-lite",
"description": "Proxy server to be used with Static CMS proxy backend",
"version": "1.0.0",
"repository": "https://github.com/staticjscms/static-cms-proxy-server",
"bugs": "https://github.com/staticjscms/static-cms-proxy-server/issues",
"license": "MIT",
"main": "dist/index",
"keywords": [
"@staticcms",
"staticcms",
"static-cms",
"backend",
"proxy"
],
"sideEffects": false,
"scripts": {
"build": "webpack",
"develop:run": "ts-node --files src/index.ts",
"develop": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec yarn develop:run",
"prepublishOnly": "yarn build",
"prestart": "yarn build",
"start": "node dist/index.js",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch",
"test": "jest"
},
"dependencies": {
"async-mutex": "0.4.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"joi": "17.8.4",
"morgan": "1.10.0",
"simple-git": "3.20.0",
"what-the-diff": "0.6.0",
"winston": "3.8.2"
},
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jest": "29.4.1",
"@types/morgan": "1.9.4",
"@types/node": "16.18.25",
"jest": "29.5.0",
"nodemon": "2.0.21",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "4.9.5",
"webpack": "5.76.2",
"webpack-cli": "5.0.1",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": ">=v14"
},
"bin": {
"static-cms-proxy-server": "./dist/index.js"
},
"files": [
"src/",
"dist/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}