Skip to content

Commit

Permalink
Merge pull request #31 from joaopcm/fix/dependencies-and-readme
Browse files Browse the repository at this point in the history
fix: fix broken dependencies and update the readme file
  • Loading branch information
joaopcm authored Oct 19, 2023
2 parents 049e3d2 + c44f23a commit f71316d
Show file tree
Hide file tree
Showing 3 changed files with 379 additions and 278 deletions.
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Clone and run this project
```bash
git clone git@github.com:joaopcm/nodepad.git
cd ./nodepad
TIPTAP_PRO_TOKEN=YOUR_TIPTAP_PRO_TOKEN_HERE pnpm install
pnpm run dev
pnpm i
pnpm dev
```

## Environment Variables
Expand Down Expand Up @@ -75,23 +75,13 @@ To run this project, you will need to add the following environment variables to
- [ ] Templates marketplace
- [ ] User authentication so that users can create only private notes
- [ ] Groups, where users can add other users to collaborate on notes privately
- [x] Add a welcome modal explaining the app when the user first visits (added a cool landing page)
- [x] Support multiple code snippets per note
- [x] AI to explain code snippets
- [x] Changelog
- [x] Examples library
- [x] Keyboard shortcuts
- [x] Command palette
- [x] Keyboard shortcuts
- [x] Move this app to its own domain (getnodepad.com)

## Technical Debts

- [ ] Add tests
- [ ] [Move this logic to an util or a hook](https://github.com/joaopcm/nodepad/pull/18#discussion_r1146363295)
- [ ] Add Zod for API routes validation
- [ ] Add error handlers in the client side
- [x] Render "view" instead of "views" when the counter is 1 (string, not number)

## Changelog

Expand Down
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@
"dependencies": {
"@headlessui/react": "1.7.13",
"@phosphor-icons/react": "2.0.13",
"@tailwindcss/forms": "0.5.3",
"@tiptap/core": "2.0.0-beta.218",
"@tiptap/extension-document": "2.0.0-beta.218",
"@tiptap/extension-link": "2.0.0-beta.220",
"@tiptap/extension-placeholder": "2.0.0-beta.218",
"@tiptap/pm": "2.0.0-beta.218",
"@tiptap/react": "2.0.0-beta.218",
"@tiptap/starter-kit": "2.0.0-beta.218",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@tiptap/core": "2.1.12",
"@tiptap/extension-document": "2.1.12",
"@tiptap/extension-link": "2.1.12",
"@tiptap/extension-placeholder": "2.1.12",
"@tiptap/pm": "2.1.12",
"@tiptap/react": "2.1.12",
"@tiptap/starter-kit": "2.1.12",
"@uiw/react-textarea-code-editor": "2.1.1",
"@upstash/redis": "1.20.1",
"@vercel/analytics": "0.1.10",
Expand All @@ -48,13 +44,16 @@
"@rocketseat/eslint-config": "1.2.0",
"@tailwindcss/typography": "0.5.9",
"autoprefixer": "10.4.13",
"cross-env": "7.0.3",
"cssnano": "^6.0.1",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"postcss": "8.4.21",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"tailwindcss": "3.2.7"
"tailwindcss": "3.2.7",
"@tailwindcss/forms": "0.5.3",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11"
}
}
Loading

0 comments on commit f71316d

Please sign in to comment.