-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "embed-api",
"version": "0.0.1",
"description": "Embed API with Cache",
"license": "MIT",
"homepage": "https://human-connection.org",
"main": "src",
"keywords": [
"feathers",
"embeds",
"url",
"metainfo"
],
"author": {
"name": "Grzegorz Leoniec",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">=8.0.0 <11.0.0",
"npm": ">=5.0.0 <6.0.0"
},
"scripts": {
"test": "yarn run eslint && yarn run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"dev": "concurrently 'mongod --dbpath data --quiet &>/dev/null' 'wait-on tcp:27017 && DEBUG=feathers nodemon src/'",
"dev:debug": "DEBUG=feathers nodemon --inspect src/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.0",
"@feathersjs/feathers": "^3.1.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"got": "^8.3.0",
"helmet": "^3.12.0",
"lodash": "^4.17.13",
"metaphor": "^3.8.3",
"metascraper": "^3.12.1",
"metascraper-author": "^3.9.2",
"metascraper-date": "^3.3.0",
"metascraper-description": "^3.9.2",
"metascraper-title": "^3.9.2",
"mongoose": "^5.0.11",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.2",
"serve-favicon": "^2.4.5",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-plugin-istanbul": "^5.1.0",
"concurrently": "^4.1.0",
"eslint": "^5.10.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"nyc": "^13.1.0",
"request-promise": "^4.2.2",
"wait-on": "^3.2.0"
}
}