-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "refactor: clean up project setup (#51)"
This reverts commit 34d03a2.
- Loading branch information
Showing
15 changed files
with
404 additions
and
1,901 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
*.tsbuildinfo | ||
.DS_Store | ||
.cache/ | ||
.eslintcache | ||
.netlify/ | ||
.ntli/ | ||
.vscode/ | ||
dev-model.gql | ||
node_modules/ | ||
# Local Netlify folder | ||
.netlify | ||
node_modules | ||
.ntli |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,54 +3,35 @@ | |
"version": "0.0.1", | ||
"main": "src/index.ts", | ||
"type": "module", | ||
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4", | ||
"scripts": { | ||
"build": "netlify-extension build", | ||
"clean": "rm -rf .netlify/ .ntli/ node_modules/.vite *.tsbuildinfo", | ||
"dev": "netlify-extension dev", | ||
"lint": "eslint --cache", | ||
"lint:fix": "eslint --cache --fix", | ||
"test": "echo 'No tests, exiting.'", | ||
"typecheck": "tsc --build", | ||
"typecheck:watch": "tsc --build --watch" | ||
"dev": "netlify-extension dev --open" | ||
}, | ||
"dependencies": { | ||
"@netlify/build": "^29.54.2", | ||
"@netlify/functions": "^2.8.1", | ||
"@netlify/plugin-csp-nonce": "^1.2.9", | ||
"@netlify/sdk": "^2.4.4", | ||
"@netlify/sdk": "^2.3.0", | ||
"@tanstack/react-query": "^5.55.4", | ||
"@trpc/client": "11.0.0-rc.477", | ||
"@trpc/react-query": "11.0.0-rc.477", | ||
"@trpc/server": "11.0.0-rc.477", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"typescript": "^5.1.6", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@netlify/netlify-plugin-netlify-extension": "^1.0.3", | ||
"@tsconfig/node18": "^18.2.4", | ||
"@netlify/netlify-plugin-netlify-extension": "^1.0.0", | ||
"@tsconfig/recommended": "^1.0.7", | ||
"@tsconfig/strictest": "^2.0.5", | ||
"@tsconfig/vite-react": "^3.0.2", | ||
"@types/eslint-plugin-tailwindcss": "^3.17.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/react": "^18.3.5", | ||
"@types/react-dom": "^18.3.0", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"@vitest/eslint-plugin": "^1.1.7", | ||
"autoprefixer": "^10.4.20", | ||
"eslint": "^9.11.0", | ||
"eslint-config-flat-gitignore": "^0.3.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-tailwindcss": "^3.17.4", | ||
"globals": "^15.11.0", | ||
"netlify-cli": "^17.36.2", | ||
"prettier": "3.3.3", | ||
"netlify-cli": "^17.35.0", | ||
"tailwindcss": "^3.4.10", | ||
"typescript": "^5.5.4", | ||
"typescript-eslint": "^8.7.0", | ||
"vite": "^5.4.3" | ||
} | ||
} |
Oops, something went wrong.