-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "safe-space-backend",
"version": "1.0.0",
"description": "Backend for Safe Space webapp",
"main": "index.js",
"scripts": {
"test": "jest --watch --verbose",
"start": "node index.js",
"server": "nodemon index.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-space-lambda/Backend-eileen.git"
},
"keywords": [],
"author": "Eileen Cuevas",
"license": "ISC",
"bugs": {
"url": "https://github.com/safe-space-lambda/Backend-eileen/issues"
},
"homepage": "https://github.com/safe-space-lambda/Backend-eileen#readme",
"devDependencies": {
"jest": "^24.0.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"knex": "^0.16.3",
"morgan": "^1.9.1",
"node-cron": "^2.0.3",
"pg": "^7.8.0",
"sqlite3": "^4.0.6",
"twilio": "^3.28.0"
}
}