forked from czarjulius/Booking-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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": "booking-api",
"version": "1.0.0",
"description": "On this project Users can be Booked by Agents so they are available to perform specific tasks.",
"main": "server.js",
"scripts": {
"dev": "nodemon --require @babel/register server.js",
"start": "node --require @babel/register server.js",
"mig": "babel-node ./models/migrate.js",
"test": "mocha spec --timeout 15000 --require @babel/register ./tests/*.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/czarjulius/Booking-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/czarjulius/Booking-API/issues"
},
"homepage": "https://github.com/czarjulius/Booking-API#readme",
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mocha": "^9.0.2",
"pg": "^8.6.0",
"supertest": "^6.1.3"
},
"devDependencies": {
"nodemon": "^2.0.10"
}
}