forked from bpmutter/RappaMappa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "rappa-mappa",
"version": "1.0.0",
"description": "- [x] Interactive map - [ ] Nav bar with search - [x] include relevant links - [x] bring user back to main page - [x] Add rapper pins to map - [x] add basic info box for selected rapper - [x] redux store to maintain state - [x] include rapper list - [x] active rapper - [x] focus location - [x] searchbox that updates active rapper in state and redirects view to correct location - [x] More information modal - [x] Create modal - [x] add custom styles and populate info - [x] All information from DB - [x] Bring in additional data from spotify API - [x] 404 Page (1 hour remaining) - [x] create/render routes correctly - [x] make content - [x] About Page - [x] basic project information - [x] contact info and github - [x] styling - [x] Error handling - [x] when search result not in DB - [x] when problem with Spotify API - [x] set up error handling in redux for extendibility - [ ] Mobile optimization (half day) - [ ] map size - [ ] search box - [ ] nav bar - [ ] modals - [ ] basic info popup - [ ] Backend (full day) - [ ] create basic database to store rapper info - Mongo DB - [ ] add spotify auth to backend (NOTE: already half done in frontend, but migrate back there) - [ ] create restful route to serve to the redux store - [ ] Add loading screens for components (time indeterminate) - [ ] main map - [ ] Deploy app (2+ hours) - [ ] make sure API keys are secure (spotify is trivial, google maps is ???) - [ ] separate backend and front end (probably) - [ ] Create project README (4 hours)",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start:dev": "nodemon server.js",
"deploy": " npm run build --prefix client/ && git add . && git commit -m\"create production build\" && git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmutter/RappaMappa.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bpmutter/RappaMappa/issues"
},
"homepage": "https://github.com/bpmutter/RappaMappa#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.5.8",
"mongoose": "^5.9.18",
"node-fetch": "^2.6.0",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}