-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "book_library",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"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",
"prestart": "node scripts/create-database.js",
"start": "nodemon -r dotenv/config index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-Marfil/book_library.git"
},
"author": "CM",
"license": "ISC",
"bugs": {
"url": "https://github.com/C-Marfil/book_library/issues"
},
"homepage": "https://github.com/C-Marfil/book_library#readme",
"devDependencies": {
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"supertest": "^6.3.3"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"eslint": "^8.32.0",
"express": "^4.18.2",
"prettier": "^2.8.3",
"sequelize": "^6.28.0"
}
}