-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
43
{
"name": "remindly",
"version": "1.0.0",
"description": "Birthday App Reminder",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node src/server.js",
"devTest": "jest --watchAll",
"devGo": "nodemon ./src/server",
"testDBbuild": "NODE_ENV=test node src/model/db_build",
"dbbuild": "node src/model/db_build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-Sixteen/Remindly.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-Sixteen/Remindly/issues"
},
"homepage": "https://github.com/FAC-Sixteen/Remindly#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"env2": "^2.2.2",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.11.0",
"query-string": "^6.5.0",
"serve-favicon": "^2.5.0",
"twilio": "^3.31.0"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"supertest": "^4.0.2"
}
}