-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "restaurants",
"private": true,
"version": "0.0.0",
"description": "ReMap Restaurants Microservice",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "ava",
"start": "micro -l tcp://0.0.0.0:${PORT:-3000}",
"dev": "micro-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remap-app/restaurants.git"
},
"author": "Shingo Sato",
"license": "MIT",
"bugs": {
"url": "https://github.com/remap-app/restaurants/issues"
},
"homepage": "https://github.com/remap-app/restaurants#readme",
"engines": {
"node": "10.9.x",
"npm": "6.x.x",
"yarn": "1.9.x"
},
"dependencies": {
"@keyv/redis": "^1.3.8",
"dotenv": "^6.0.0",
"got": "^9.2.2",
"keyv": "^3.1.0",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.head": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.mapkeys": "^4.6.0",
"lodash.uniqwith": "^4.5.0",
"map-obj": "^3.0.0",
"micro": "^9.3.3",
"micro-compose": "^0.0.3",
"micro-cors-multiple-allow-origin": "^1.0.1",
"micro-errors": "^2.0.0",
"microrouter": "^3.1.3",
"ms": "^2.1.1",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"ava": "^1.0.0-beta.6",
"eslint": "^5.6.0",
"eslint-plugin-node": "^7.0.1",
"micro-dev": "^3.0.0"
}
}