-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 872 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
{
"name": "music-library",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "node utils/create-database.js",
"start": "node index.js",
"start:dev": "node utils/create-database.js && nodemon -r dotenv/config index.js",
"pretest": "node utils/create-database.js test",
"test": "mocha __tests__/**/*.js --exit --recursive --timeout 60000 --file ./__tests__/test-setup.js",
"posttest": "node utils/drop-database.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
},
"dependencies": {
"express": "^4.17.2",
"mysql2": "^2.3.3"
}
}