-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "popcorn-api",
"version": "1.0.0",
"description": "Crawl imdb data and let user search",
"main": "app.js",
"scripts": {
"start": "nodemon app",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ."
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/geek-paradox/popcorn-api.git"
},
"keywords": [
"imdb"
],
"author": "geek-paradox",
"license": "MIT",
"bugs": {
"url": "https://github.com/geek-paradox/popcorn-api/issues"
},
"homepage": "https://github.com/geek-paradox/popcorn-api#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"graphql": "^14.3.1",
"graphql-tools": "^4.0.5",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-graphql": "^0.8.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.6.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"eslint": "^5.9.0",
"jshint": "^2.9.5",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2"
}
}