-
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) · 802 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 802 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
{
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint --fix src",
"test": "jest"
},
"keywords": [],
"license": "GPL-3.0",
"dependencies": {
"@consumet/extensions": "^1.5.2",
"@sentry/node": "^7.54.0",
"apicache-plus": "^2.3.1",
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"ioredis": "^5.3.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/apicache": "^1.6.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^3.0.1"
}
}