-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "authentication",
"version": "0.0.0",
"private": true,
"description": "ReMap Authentication Microservice",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\"",
"start": "micro -l tcp://0.0.0.0:${PORT:-3000}",
"dev": "micro-dev",
"prestart": "echo $SERVICE_ACCOUNT_KEY_BASE64 | base64 --decode > ./service-account-key.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remap-app/authentication.git"
},
"author": "Shingo Sato",
"license": "MIT",
"bugs": {
"url": "https://github.com/remap-app/authentication/issues"
},
"homepage": "https://github.com/remap-app/authentication#readme",
"engines": {
"node": "8.11.x",
"npm": "6.x.x",
"yarn": "1.x.x"
},
"dependencies": {
"dotenv": "^6.0.0",
"firebase-admin": "^6.0.0",
"lodash.pick": "^4.4.0",
"micro": "^9.3.3",
"micro-cors-multiple-allow-origin": "^1.0.1",
"microrouter": "^3.1.3"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-plugin-node": "^7.0.1",
"micro-dev": "^3.0.0"
}
}