-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 955 Bytes
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
{
"name": "book-library-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "node scripts/create-database.js",
"start": "nodemon -r dotenv/config index.js",
"pretest": "node scripts/create-database.js test",
"test": "mocha tests/**/*.js --exit --recursive --timeout 60000 --file ./tests/test-setup.js",
"posttest": "node scripts/drop-database.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/James-Sample/book-library-apr.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/James-Sample/book-library-apr/issues"
},
"homepage": "https://github.com/James-Sample/book-library-apr#readme",
"dependencies": {
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"sequelize": "^6.28.0",
"supertest": "^6.3.3"
}
}