forked from Medic1111/BORROW-APP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
55
56
57
{
"name": "borrow-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/app.js",
"dev": "nodemon server/app.js",
"test": "jest --watchAll --detectOpenHandles",
"build": "cd client && npm install && npm run build"
},
"contributors": [
{
"name": "Aryse Tansy",
"url": "http://pagano.dev/"
},
{
"name": "Jacqueline O'Donnell",
"url": "https://github.com/jackieodonnell"
},
{
"name": "Denasia Furniss",
"url": "https://denasia-furniss-portfolio.herokuapp.com/"
},
{
"name": "Audra Omlie",
"url": "https://linkedin.com/in/audraomlie"
},
{
"name": "LaToya Simon",
"url": "https://github.com/latoyadsimon"
},
{
"name": "Alondra Perez Cortez",
"url": "https://sites.google.com/view/alondra-perez-cortez/projects"
},
{
"name": "Cappreccia Swanson",
"url": "https://www.linkedin.com/in/cappreccia-swanson"
}
],
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.8.0"
},
"devDependencies": {
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.1"
}
}