-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
44
45
46
47
{
"name": "free-otp-api",
"version": "1.0.0",
"main": "dist/app.js",
"description": "api for free otp codes",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Shelex/free-otp-api.git"
},
"keywords": [
"otp",
"puppeteer"
],
"type": "module",
"scripts": {
"build": "yarn tsc",
"prestart": "npm run build",
"start": "node dist/src/app.js"
},
"dependencies": {
"@fastify/cors": "9.0.1",
"@fastify/swagger": "8.15.0",
"@fastify/swagger-ui": "4.1.1",
"consola": "3.2.3",
"croner": "7.0.8",
"dotenv": "16.4.5",
"fastify": "4.28.1",
"fastify-healthcheck": "^4.4.0",
"json-schema-to-ts": "3.1.1",
"puppeteer": "19.11.1",
"puppeteer-cluster": "0.24.0",
"puppeteer-extra": "3.3.6",
"puppeteer-extra-plugin-stealth": "2.11.2",
"redis": "4.7.0"
},
"devDependencies": {
"@types/node": "18.19.46",
"@types/redis": "4.0.11",
"esbuild": "0.23.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"typescript": "5.3.3"
}
}