-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "@mediacodex/search",
"version": "1.0.0",
"description": "API Microservice for search",
"scripts": {
"test": "jest --coverage",
"start": "node -r esm ./src/router.js",
"build": "webpack && npm run build:zip",
"build:zip": "cd build && for i in *.js; do zip $i.zip $i; done",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lint:tf": "cd terraform && terafrom validate -recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediacodex/service-search.git"
},
"author": "DeltaByte (https://github.com/DeltaByte)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mediacodex/service-search/issues"
},
"homepage": "https://github.com/mediacodex/service-search#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@koa/router": "^9.3.1",
"axios": "^0.19.2",
"esm": "^3.2.25",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-json-error": "^3.1.2",
"ramda": "^0.27.1",
"serverless-http": "^2.5.0"
}
}