-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "microfleet-demo-app",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "mfleet",
"test": "yarn lint && docker-compose -f test/docker-compose.yml run --rm tester yarn mocha test/suites/",
"posttest": "docker-compose -f test/docker-compose.yml down",
"pretest": "docker-compose -f test/docker-compose.yml up -d && sleep 5",
"lint": "eslint ."
},
"dependencies": {
"@hapi/hapi": "^18.3.2",
"@microfleet/core": "^15.0.0",
"@microfleet/plugin-knex": "^0.2.6",
"@microfleet/transport-amqp": "^15.0.0",
"@microfleet/validation": "^8.1.2",
"common-errors": "^1.0.5",
"ioredis": "^4.14.1",
"ms-conf": "^5.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-makeomatic": "^4.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^14.0.0",
"husky": "^3.1.0",
"mocha": "^6.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}