-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
44
45
46
47
48
{
"name": "volly",
"version": "1.0.0",
"description": "Volunteer management platform for non-profits.",
"main": "index.js",
"scripts": {
"test": "jest -i --coverage",
"test-c": "jest -i --coverage company-auth-router.test.js",
"test-v": "jest -i --coverage volunteer-auth-router.test.js",
"test-p": "jest -i --coverage phone-verify-router.test.js",
"test-s": "jest -i --coverage server.test.js",
"lint": "eslint .",
"start": "node index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VollySMS/Volly.git"
},
"keywords": [
"volunteer",
"management",
"twilio"
],
"author": "Pedja Josifovic && Anthony Robinson && Robert Reed",
"license": "MIT",
"bugs": {
"url": "https://github.com/VollySMS/Volly/issues"
},
"homepage": "https://github.com/VollySMS/Volly#readme",
"devDependencies": {
"eslint": "^4.14.0",
"faker": "^4.1.0",
"jest": "^22.0.4"
},
"dependencies": {
"bcrypt": "^1.0.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.13.7",
"superagent": "^3.8.2",
"twilio": "^3.11.0",
"winston": "^2.4.0"
}
}