-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "x5gon-elasticsearch-microservice",
"version": "1.0.0",
"description": "The X5GON solution for finding OER materials quickly and efficiently",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"start": "node dist/search.js",
"development": "./node_modules/nodemon/bin/nodemon.js --config ./nodemon.json",
"load:es": "node ./load/create-elasticsearch-index.js",
"test": "echo \"Error: no test specified\" && exit 0",
"format": "./node_modules/.bin/tsfmt -r",
"lint": "./node_modules/.bin/tslint --project .",
"lint-fix": "./node_modules/.bin/tslint --fix --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErikNovak/X5GON-elasticsearch-microservice.git"
},
"keywords": [
"elasticsearch",
"microservice",
"node.js",
"open educational resources"
],
"author": "Erik Novak",
"contributors": [
{
"name": "Erik Novak",
"email": "erik.novak@ijs.si"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ErikNovak/X5GON-elasticsearch-microservice/issues"
},
"homepage": "https://github.com/ErikNovak/X5GON-elasticsearch-microservice#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.5.0",
"archiver": "^3.1.1",
"async": "^3.2.0",
"bent": "^7.3.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"express-winston": "^4.0.2",
"iso-639-1": "^2.1.1",
"pg": "^8.0.0",
"pg-cursor": "^2.1.7",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@types/async": "^3.2.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/elasticsearch": "^5.0.36",
"@types/express": "^4.17.3",
"@types/node": "^13.9.2",
"@types/pg": "^7.14.3",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"typescript-formatter": "^7.2.2"
}
}