add frame express app

This commit is contained in:
2020-06-13 01:31:48 -06:00
parent bbe78747f3
commit d3eb93666e
29 changed files with 1670 additions and 0 deletions

28
frame/package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "frame",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "yarn build && node --inspect ./build/bin/www",
"typescript": "tsc && cp -R ./src/views ./build/ && cp -R ./src/public ./build/",
"build": "yarn typescript",
"dist": "yarn build && cp -R ./build ./dist/ && cp -R ./node_modules ./dist/"
},
"dependencies": {
"@types/node": "^14.0.13",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"helmet": "^3.23.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"passport-oauth2-refresh": "^2.0.0"
}
}