-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "@planterdocs/fetch-api",
"version": "0.0.0",
"description": "A query only API",
"main": "server.js",
"scripts": {
"start": "node app.js",
"dev": "NODE_DEBUG=fetch-api::*,fireferret::* nodemon app.js",
"prod": "NODE_ENV=production node app.js",
"test": "npm run lint",
"lint": "echo \"Running Lint...\" && standard --verbose && echo \"Lint Successful!\"",
"lint-fix": "echo \"Running standard --fix\" && standard --fix && echo \"Good to go!\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/planterdocs/fetch-api.git"
},
"keywords": [
"fetch",
"api",
"document",
"caching"
],
"author": "Planterdocs (https://github.com/planterdocs)",
"contributors": [
"Michael Sterpka <[email protected]> (https://github.com/mster)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/planterdocs/fetch-api/issues"
},
"homepage": "https://github.com/planterdocs/fetch-api#readme",
"devDependencies": {
"nodemon": "^2.0.4",
"standard": "^14.3.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^3.1.1",
"fastify-autoload": "^3.0.7",
"fastify-helmet": "^5.0.1",
"fastify-plugin": "^2.0.3",
"fireferret": "^0.2",
"http-errors": "^1.8.0"
}
}