forked from AmericanAirlines/AA-Mock-Engine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
40
41
42
43
44
45
46
47
48
{
"name": "AA-Mock-Engine",
"version": "1.0.1",
"description": "A simple backend to help you get up and running with mock data for flight data, travel info, reservations to help you get hacking on the next big thing for AmericanAirlines",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon -w ./api app.js",
"mock": "node -e 'require(\"./mock/populateDb.js\").startImport()'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmericanAirlines/AA-Mock-Engine.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmericanAirlines/AA-Mock-Engine/issues"
},
"homepage": "https://github.com/AmericanAirlines/AA-Mock-Engine#readme",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^4.0.0",
"email-validator": "^1.2.3",
"express": "^4.16.3",
"lodash": "^4.17.11",
"mongodb": "^2.2.36",
"randomstring": "^1.1.5",
"swagger": "^0.7.5",
"swagger-editor": "^3.6.11",
"swagger-express-mw": "^0.1.0",
"swagger-tools": "^0.10.4",
"swagger-ui": "^3.19.0",
"tar": "^4.4.6"
},
"devDependencies": {
"nodemon": "^1.18.4",
"should": "^7.1.0",
"supertest": "^1.0.0"
},
"nodemonConfig": {
"ignore": [
"data/"
],
"verbose": true
}
}