-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
37
38
39
{
"name": "note-reminder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-server": "sudo node ./src/server/start.js",
"start-production-server": "NODE_ENV=production && sudo node ./src/server/start.js",
"kill-server": "sudo kill $(pgrep node)",
"connect-to-remote-server": "sh ./src/scripts/connect_to_remote_server.sh",
"server-forwarding": "ngrok http 3000",
"load-schema": "psql -U power_user -f src/db/schema.sql postgres"
},
"dependencies": {
"express": "^4.17.1",
"moment": "^2.24.0",
"node-cron": "^2.0.3",
"pg": "^7.11.0",
"twilio": "^3.33.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thakichowdhury/note-reminder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thakichowdhury/note-reminder/issues"
},
"homepage": "https://github.com/thakichowdhury/note-reminder#readme"
}