-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "property-mgr-be",
"version": "1.0.0",
"description": "Server for RentMe",
"main": "server.js",
"scripts": {
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --watch --verbose",
"start": "node index.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/labs13-property-mgr/backend.git"
},
"keywords": [],
"author": "Ethan Baugher",
"license": "MIT",
"bugs": {
"url": "https://github.com/labs13-property-mgr/backend/issues"
},
"homepage": "https://github.com/labs13-property-mgr/backend#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"nodemon": "^1.19.1",
"supertest": "^3.3.0"
},
"dependencies": {
"@google-cloud/storage": "^2.5.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"connect-session-knex": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"firebase": "^6.0.4",
"firebase-admin": "^8.1.0",
"firebase-functions": "^2.3.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.17.5",
"knex-cleaner": "^1.1.4",
"morgan": "^1.9.1",
"os": "^0.1.1",
"path": "^0.12.7",
"pg": "^7.11.0",
"sqlite3": "^4.0.8",
"twilio": "^3.33.2"
}
}