-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 949 Bytes
/
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
{
"name": "todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"create_database": "createdb todo",
"create_tables": "psql -h localhost -d todo -f sql/create_tables.sql",
"seed_tables": "psql -h localhost -d todo -f sql/seed_tables.sql",
"alter_tables": "psql -h localhost -d todo -f sql/alter_tables.sql",
"start": "node -r dotenv/config index.js",
"dev": "nodemon -r dotenv/config -e js,ejs,css,sql index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"pg": "^8.5.1",
"pg-promise": "^10.9.5"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.7"
}
}