-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "amvstrmapi",
"version": "1.0.0",
"description": "amvstrm API for amvstrm websites.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"deploy": "echo 'COMMIT TO GIT AND DEPLOY TO VERCEL' && git add . && git commit -m 'upload' && git push -u origin master",
"lint": "eslint --fix src",
"test": "jest"
},
"author": "amvstrm",
"repository": {
"type": "git",
"url": "https://github.com/amvstrm/api.git"
},
"license": "GPL-3.0",
"dependencies": {
"@consumet/extensions": "^1.4.10",
"apicache-plus": "^2.3.1",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"helmet": "^5.1.1",
"ioredis": "^5.3.0",
"jsonschema": "^1.4.1",
"morgan": "^1.10.0",
"nodejs-base64": "^2.0.0",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.19"
}
}