-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "nextlaunch.io",
"version": "1.0.0",
"description": "Get informations about SpaceX upcoming and completed launches",
"main": "index.js",
"homepage": "https://nextlaunch.io",
"repository": "https://github.com/mdcarter/nextlaunch.io",
"author": "Maxime Dehaye <[email protected]>",
"license": "MIT",
"scripts": {
"start": "micro",
"dev": "micro-dev",
"deploy": "now"
},
"dependencies": {
"dotenv": "5.0.1",
"ioredis": "3.2.2",
"micro": "9.1.4",
"microrouter": "3.1.1",
"node-fetch": "2.1.2"
},
"devDependencies": {
"husky": "0.14.3",
"micro-dev": "2.2.2",
"now": "11.0.1",
"standard": "11.0.1"
},
"now": {
"alias": "nextlaunch.io",
"env": {
"NODE_ENV": "production",
"DATA_URL": "@next-launch-data-url",
"REDIS_HOST": "@next-launch-redis-host",
"REDIS_PASSWORD": "@next-launch-redis-password",
"REDIS_PORT": "@next-launch-redis-port"
}
},
"husky": {
"hooks": {
"pre-commit": "standard --fix"
}
}
}