-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 857 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 857 Bytes
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
{
"name": "adwit-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "fastify start -l info app.js",
"dev": "fastify start -w -l info -P app.js"
},
"keywords": ["API","REST", "fastify", "cheerio", "web-scraping"],
"author": "Refaat Bitar",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"fastify": "^3.0.0",
"fastify-autoload": "^3.3.1",
"fastify-axios": "^1.2.4",
"fastify-cli": "^2.13.0",
"fastify-cors": "^6.0.2",
"fastify-helmet": "^5.3.2",
"fastify-no-icon": "^4.0.0",
"fastify-plugin": "^3.0.0",
"fastify-rate-limit": "^5.6.2",
"fastify-sensible": "^3.1.0",
"fastify-swagger": "^4.12.6"
},
"devDependencies": {
"tap": "^15.0.9"
}
}