96 switch from azure table storage to sqlite (#97)
* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
This commit was merged in pull request #97.
This commit is contained in:
19
package.json
19
package.json
@@ -1,15 +1,18 @@
|
||||
{
|
||||
"name": "@noahspan/flying",
|
||||
"version": "1.4.0",
|
||||
"version": "2.0.0-alpha",
|
||||
"scripts": {
|
||||
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
|
||||
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
|
||||
"lint": "npm run lint -w api && npm run lint -w app",
|
||||
"prepare": "husky || true",
|
||||
"preprod": "rimraf ./.prod && pnpm --filter api build && pnpm --filter app build",
|
||||
"prod": "pnpm --filter api --prod deploy ./.prod/api && pnpm --filter app --prod deploy ./.prod/app"
|
||||
"prod": "pnpm --filter api --prod deploy ./.prod/api && pnpm --filter app --prod deploy ./.prod/app",
|
||||
"dev": "turbo run dev",
|
||||
"build": "turbo run build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
||||
"@typescript-eslint/parser": "^7.2.0",
|
||||
"concurrently": "^8.2.2",
|
||||
@@ -21,9 +24,21 @@
|
||||
"lint-staged": "^15.2.2",
|
||||
"prettier": "3.2.5",
|
||||
"rimraf": "^6.0.1",
|
||||
"turbo": "^2.5.6",
|
||||
"wait-on": "^7.2.0"
|
||||
},
|
||||
"lint-staged": {
|
||||
"**/*": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\" --ignore-unknown"
|
||||
},
|
||||
"workspaces": [
|
||||
"api",
|
||||
"client",
|
||||
"tests"
|
||||
],
|
||||
"dependencies": {
|
||||
"@heroui/react": "^2.8.5",
|
||||
"@tanstack/react-table": "^8.21.3",
|
||||
"daisyui": "^5.1.10",
|
||||
"framer-motion": "^12.23.24"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user