Skip to content

Commit

Permalink
- filtering by tags
Browse files Browse the repository at this point in the history
- loading indicator
- scroll to items when one is in zoomed view
- axios for requests (because it can cancel request)
- start for isomorphic-data-driven router
- add response delay (500-1500ms) when in dev mode
- tweak to fix `sync-files` bug at byteclubfr/node-sync-files#6
- build
  • Loading branch information
podgorniy committed Apr 20, 2019
1 parent dda00ae commit 8bab616
Show file tree
Hide file tree
Showing 22 changed files with 710 additions and 65 deletions.
162 changes: 156 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build": "export NODE_ENV=production && npm run _clean && npm run _build-server && npm run _build-server-views && npm run _build-static && npm run _build-client",
"prod": "export NODE_ENV=production && node ./dist/server/index.js",
"_clean": "rm -rf ./dist/**",
"_build-static": "sync-files ./src/static ./dist/static",
"_watch-static": "sync-files --watch ./src/static ./.dev/static",
"_build-static": "sync-files --no-notify-update ./src/static ./dist/static",
"_watch-static": "sync-files --no-notify-update --watch ./src/static ./.dev/static",
"_build-server-views": "sync-files ./src/server-views ./dist/server-views",
"_watch-server-views": "sync-files --watch ./src/server-views ./.dev/server-views",
"_build-server": "tsc --project ./src/server/tsconfig.json",
Expand All @@ -22,7 +22,10 @@
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"clone-deep": "^4.0.1",
"connect-mongo": "^2.0.3",
"deep-equal": "^1.0.1",
"deepmerge": "^3.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
Expand All @@ -34,13 +37,18 @@
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "^2.0.3",
"qs": "^6.7.0",
"source-map-support": "^0.5.10",
"traverse": "^0.6.6",
"url-parse": "^1.4.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/clone-deep": "^4.0.1",
"@types/connect-mongo": "0.0.40",
"@types/deep-equal": "^1.0.1",
"@types/dotenv": "^6.1.0",
"@types/dropzone": "^5.0.4",
"@types/express": "^4.16.0",
Expand All @@ -53,8 +61,12 @@
"@types/passport": "^0.4.7",
"@types/passport-local": "^1.0.33",
"@types/pug": "^2.0.4",
"@types/qs": "^6.5.3",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/traverse": "^0.6.32",
"@types/url-parse": "^1.4.3",
"axios": "^0.18.0",
"@types/uuid": "^3.4.4",
"concurrently": "^4.1.0",
"dropzone": "^5.5.1",
Expand Down
Loading

0 comments on commit 8bab616

Please sign in to comment.