-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
40
41
42
{
"name": "feb2019buildweek",
"version": "1.0.0",
"description": "Training reminder web app for Mentors International",
"main": "server.js",
"scripts": {
"test": "jest --verbose server.js",
"dev": "nodemon server.js",
"start": "node server_prod.js",
"reload": "knex migrate:rollback && knex migrate:latest && knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan2014/Feb2019BuildWeek.git"
},
"author": "Daniel Mendez",
"license": "MIT",
"bugs": {
"url": "https://github.com/dan2014/Feb2019BuildWeek/issues"
},
"homepage": "https://github.com/dan2014/Feb2019BuildWeek#readme",
"devDependencies": {
"nodemon": "^1.18.9"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"helmet": "^3.15.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"knex": "^0.16.3",
"moment": "^2.24.0",
"nodemailer": "^5.1.1",
"randomatic": "^3.1.1",
"sqlite3": "^4.0.6",
"twilio": "^3.28.0",
"usa-states": "^0.0.5"
}
}