-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "sofamaxxing",
"version": "1.0.0",
"description": "Api to fetch anime/movies/tv shows",
"main": "src/api/index.ts",
"scripts": {
"start": "ts-node src/api/index.ts",
"dev": "nodemon src/api/index.ts",
"build": "tsc",
"test": "jest"
},
"keywords": [
"api",
"anime",
"movies",
"tv"
],
"author": "aleganza",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@consumet/extensions": "github:consumet/consumet.ts",
"@fastify/cors": "^10.0.1",
"@fastify/rate-limit": "^10.2.1",
"@vercel/analytics": "^1.4.1",
"@vercel/node": "^5.0.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"fastify-autoload": "^3.13.0",
"react-native-cheerio": "^1.0.0-rc.4"
}
}