Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# TWILIO_ACCOUNT_SID
export ACCOUNT_ID=

# TWILIO_AUTH_TOKEN
export AUTH_TOKEN=

export MYSQL_URL=mysql://your_mysql_username:your_password@your_host_name:port_number/db_name
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.20.0
675 changes: 675 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

36 changes: 29 additions & 7 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@
{
"name": "Zephyr-Node",
"version": "0.1.0",
"description": "Productibity app that creates flashcard decks and sends SMS messages",
"name": "zephyr-node",
"version": "1.2.0",
"description": "Full stack productivity application where users can organize their notes, flashcards, to-dos, and reminders. Flashcards and reminders can be sent as text messages.",
"main": "server.js",
"contributors": [
{
"name": "Ana Arakaki",
"url": "https://github.com/aparakaki"
},
{
"name": "Chris Armendarez",
"url": "https://github.com/chrisArmo"
},
{
"name": "Kevin Do",
"url": "https://github.com/do-kevin"
},
{
"name": "Pauline Bantayan",
"url": "https://github.com/pauline-ann"
}
],
"private": true,
"proxy": "http://127.0.0.1:3001/",
"proxy": "http://0.0.0.0:$PORT/",
"license": "GNU GPLv3",
"dependencies": {
"axios": "^0.16.2",
"dompurify": "^1.0.8",
"logrocket": "^0.6.19",
"moment": "^2.22.2",
"node-sass": "^4.11.0",
"node-pre-gyp": "^0.17.0",
"node-sass": "npm:sass",
"nuka-carousel": "^4.4.5",
"react": "^16.6.0",
"react-datetime-picker": "^2.0.0",
Expand All @@ -20,11 +41,12 @@
"react-router-hash-link": "^1.2.1",
"react-scripts": "2.0.3",
"reactstrap": "^7.0.2",
"sass": "^1.62.0",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
Expand Down
Loading