forked from cofacts/url-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 989 Bytes
/
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
{
"name": "link-resolver",
"version": "1.0.0",
"description": "Scraps URL and returns summarization results",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "docker build -t mrorz/cofacts-url-resolver:latest .",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix .",
"test": "jest"
},
"author": "MrOrz",
"license": "MIT",
"dependencies": {
"apollo-server": "^2.3.1",
"dotenv": "^6.0.0",
"get-video-id": "^3.1.0",
"googleapis": "^36.0.0",
"graphql": "^14.0.2",
"node-fetch": "^2.2.0",
"rollbar": "^2.5.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"puppeteer": "=1.11.0"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./tests/setup.js"
}
}