-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "api-multas",
"version": "0.0.1",
"description": "API de multas nacionais",
"main": "./dist",
"license": "MIT",
"scripts": {
"dev": "tsc && link-module-alias && concurrently \"tsc --watch\" \"nodemon dist/index.js\"",
"start": "tsc && link-module-alias && node dist/index.js",
"test": "jest",
"docs": "typedoc ./src/index.ts"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^20.6.0",
"@types/user-agents": "^1.0.2",
"concurrently": "^7.5.0",
"nodemon": "^2.0.22",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"2captcha": "latest",
"2captcha-ts": "^2.0.1",
"api-multas": "^0.0.9",
"axios": "^1.5.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"link-module-alias": "^1.2.0",
"puppeteer": "^21.2.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"user-agents": "^1.0.1444"
},
"_moduleAliases": {
"src": "dist"
}
}