-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 943 Bytes
/
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
{
"name": "week7-hihi",
"version": " 1.0.0",
"engines": {
"node": "12.16.x"
},
"description": "REST API for books and readers",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "PGDATABASE=readers_coders_test_db tape tests/* | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac19/week7-hihi.git"
},
"author": "Hettie McConnell, Hannah Gooding, Ivo Evans, Ina Yoon",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac19/week7-hihi/issues"
},
"homepage": "https://github.com/fac19/week7-hihi#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.2"
},
"devDependencies": {
"nodemon": "^2.0.3",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"supertest": "^4.0.2"
}
}