-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
30 lines (30 loc) · 848 Bytes
/
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
{
"name": "flixquest-api",
"version": "1.1.1",
"description": "A node app that uses @movie-web/providers to scrape streaming sites",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"lint": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.4.1",
"@types/dotenv": "^8.2.0",
"axios": "^1.6.2",
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"ioredis": "^5.3.2",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.2"
},
"devDependencies": {
"@types/node": "^20.9.4"
}
}