-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "stocks",
"version": "0.0.0",
"private": true,
"description": "ReMap Stocks Microservice",
"main": "index.js",
"scripts": {
"test": "ava",
"lint": "eslint .",
"start": "micro -l tcp://0.0.0.0:${PORT:-3000}",
"dev": "micro-dev -i model.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remap-app/stocks.git"
},
"engines": {
"node": "10.9.x",
"npm": "6.x.x",
"yarn": "1.9.x"
},
"author": "Shingo Sato",
"license": "MIT",
"bugs": {
"url": "https://github.com/remap-app/stocks/issues"
},
"homepage": "https://github.com/remap-app/stocks#readme",
"dependencies": {
"@remap/authenticate-middleware": "^1.1.1",
"@remap/services": "^2.0.0",
"cross-fetch": "^2.2.2",
"dotenv": "^6.0.0",
"lodash.isnan": "^3.0.2",
"lodash.tonumber": "^4.0.3",
"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",
"mongoose": "^5.3.0",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"ava": "^1.0.0-beta.7",
"eslint": "^5.6.1",
"eslint-plugin-node": "^7.0.1",
"micro-dev": "^3.0.0"
}
}