-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "Backend-hauze",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "node utils/create-database.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",
"start": "nodemon -r dotenv/config index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaggieTheCoder/backend-hauzechores.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MaggieTheCoder/backend-hauzechores/issues"
},
"homepage": "https://github.com/MaggieTheCoder/backend-hauzechores#readme",
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.3",
"mysql2": "^2.3.3"
}
}