-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "elvis-api",
"version": "1.0.0",
"description": "Search and visualize public procurements for EU countries http://tenders.exposed/",
"main": "server.js",
"devDependencies": {
"ava": "^1.3.1",
"coveralls": "^3.0.0",
"eslint": "^5.15.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"factory-girl": "^5.0.1",
"nyc": "^13.3.0",
"supertest": "^3.0.0"
},
"dependencies": {
"acorn": "^6.1.1",
"ajv": "^5.3.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"commander": "^2.12.2",
"config": "^1.28.1",
"cross-env": "^5.1.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"joi": "^14.3.1",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.15",
"mailgun-js": "^0.22.0",
"moment": "^2.19.1",
"morgan": "^1.9.1",
"orientjs": "^3.0.4",
"p-queue": "^2.3.0",
"p-retry": "^1.0.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"session": "^0.1.0",
"swagger-express-mw": "^0.7.0",
"swagger-ui-express": "^2.0.11",
"uuid": "^3.1.0",
"yamljs": "^0.3.0"
},
"scripts": {
"migrate": "node ./scripts/migrate.js",
"lint": "eslint .",
"test": "NODE_ENV=testing nyc ava --serial",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"import_data": "node ./scripts/import_data.js"
},
"keywords": [
"elvis"
],
"author": "Tenders Exposed <[email protected]>",
"contributors": [
"Georgiana Bere <[email protected]>"
],
"license": "MIT",
"ava": {
"files": [
"test/**/*.js",
"!test/*.js"
]
}
}