-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.73 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
{
"name": "mytvguideproxy",
"version": "1.0.0",
"description": "",
"main": "./server.js",
"engines": {
"node": "10.16.2"
},
"scripts": {
"run": "./run.sh",
"start": "node ./server.js",
"start:watch": "source setEnv.sh && nodemon --watch src ./server.js",
"start:debug": "DEBUG=express:* npm start",
"lint": "eslint 'src/**/*.{js,mjs}' --fix",
"install:heroku:cli": "brew tap heroku/brew && brew install heroku",
"heroku:login": "heroku login",
"heroku:logs": "heroku logs -a my-tv-guide-proxy",
"heroku:config": "heroku config -a my-tv-guide-proxy",
"install:ibmcloud:cli": "curl -sL https://ibm.biz/idt-installer | bash",
"bx:login": "bx login",
"test": "jest --detectOpenHandles --silent --coverage=false --config=jest.config.js",
"test:verbose": "jest --detectOpenHandles --coverage=false --config=jest.config.js",
"test:coverage": "jest --detectOpenHandles --silent --config=jest.config.js",
"coverage": "npm run test:coverage && cat ./test/results/coverage/jest/lcov.info | coveralls",
"set:env": "source setEnv.sh"
},
"author": "Miguel Martin",
"license": "ISC",
"dependencies": {
"cache-manager": "^3.3.0",
"express": "^4.17.1",
"express-cache-middleware": "^1.0.1",
"firebase": "^7.14.3",
"firebase-admin": "^8.12.1",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.3"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"jest-date-mock": "^1.0.8",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}