-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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": "hotelexpress",
"version": "1.0.0",
"description": "Hotel Express Api Test",
"main": "index.js",
"scripts": {
"start": "npm install && cross-env NODE_ENV=development nodemon --exec babel-node index.js",
"start-prod": "npm install && cross-env NODE_ENV=production \"./node_modules/.bin/babel-node\" \"./index.js\"",
"start-docker": "npm install && cross-env NODE_ENV=docker \"./node_modules/.bin/babel-node\" \"./index.js\"",
"debug": "nodemon --exec babel-node --inspect \"./index.js\"",
"test": "babel-node \"spec/specs.js\"",
"test-cover": "istanbul cover jasmine --require babel-node \"spec/run.js\""
},
"author": "Mustafa Mohamed",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"esm": "^3.2.25",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-node": "^3.0.0",
"jasmine-supertest": "^1.0.0",
"mockingoose": "^2.13.2",
"supertest": "^4.0.2"
},
"dependencies": {
"cross-env": "^5.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2",
"mongoose": "^5.6.10",
"opn": "^6.0.0",
"swagger-express-middleware": "^2.0.2",
"swagger-ui-express": "^4.0.7"
}
}