-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1001 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
{
"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",
"prestart": "node scripts/create-database.js",
"start": "nodemon -r dotenv/config index.js",
"lint:fix": "npx eslint ./src --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxkoder/book-library.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mxkoder/book-library/issues"
},
"homepage": "https://github.com/mxkoder/book-library#readme",
"dependencies": {
"express": "^4.18.1",
"mysql2": "^2.3.3",
"sequelize": "^6.21.4"
},
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"supertest": "^6.2.4"
}
}