1
0
Fork 0
mirror of https://github.com/kou029w/http-echo.git synced 2025-01-18 16:08:13 +00:00
http-echo/package.json

26 lines
526 B
JSON
Raw Normal View History

2020-03-24 00:52:27 +09:00
{
"name": "@kou029w/http-echo",
"version": "1.0.0",
"description": "HTTP Echo Server",
"main": "index.js",
"license": "MIT",
"scripts": {
2020-03-24 18:21:28 +09:00
"start": "node -r dotenv/config index.js"
2020-03-24 00:52:27 +09:00
},
"dependencies": {
2020-05-16 20:08:33 +09:00
"cookie-parser": "latest",
2020-05-16 22:31:17 +09:00
"dotenv": "latest",
2020-03-24 18:21:28 +09:00
"express": "latest",
2020-05-16 20:08:33 +09:00
"morgan": "latest",
"passport": "latest",
"passport-http": "latest"
2020-03-24 00:52:27 +09:00
},
"devDependencies": {
"aws-serverless-express": "latest",
2020-03-24 00:52:27 +09:00
"sync-glitch-cli": "latest"
},
"engines": {
2022-02-17 13:43:26 +09:00
"node": ">=12"
2020-03-24 00:52:27 +09:00
}
}