Settings System (#46)
* feat(api): settings system Also includes /auth/me endpoint for ticket ch76 and OpenAPI 3.0 compatibility for ch77 * refactor(api): remove unused imports
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "nodemon -e ts --watch server -x ts-node --project server/tsconfig.json server/index.ts",
|
||||
"dev": "nodemon -e ts --watch server -e .json,.ts,.yml -x ts-node --files --project server/tsconfig.json server/index.ts",
|
||||
"build:server": "tsc --project server/tsconfig.json",
|
||||
"build:next": "next build",
|
||||
"build": "yarn build:next && yarn build:server",
|
||||
@@ -18,6 +18,7 @@
|
||||
"connect-typeorm": "^1.1.4",
|
||||
"cookie-parser": "^1.4.5",
|
||||
"express": "^4.17.1",
|
||||
"express-openapi-validator": "^3.16.11",
|
||||
"express-session": "^1.17.1",
|
||||
"next": "9.5.3",
|
||||
"react": "16.13.1",
|
||||
@@ -25,7 +26,9 @@
|
||||
"react-transition-group": "^4.4.1",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"sqlite3": "^5.0.0",
|
||||
"typeorm": "^0.2.25"
|
||||
"swagger-ui-express": "^4.1.4",
|
||||
"typeorm": "^0.2.25",
|
||||
"yamljs": "^0.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^9.1.2",
|
||||
@@ -38,6 +41,8 @@
|
||||
"@types/react": "^16.9.49",
|
||||
"@types/react-transition-group": "^4.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
||||
"@types/swagger-ui-express": "^4.1.2",
|
||||
"@types/yamljs": "^0.2.31",
|
||||
"@typescript-eslint/parser": "^3.10.1",
|
||||
"commitizen": "^4.2.1",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
|
||||
Reference in New Issue
Block a user