-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 960 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 960 Bytes
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
{
"name": "sira-auth",
"version": "0.1.0",
"description": "Authentication scraper for Univalle’s student portal — takes student credentials and returns verified user information.",
"keywords": [
"univalle",
"authentication",
"scraper",
"api",
"web-scraping",
"sira"
],
"license": "MIT",
"author": "code3743",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon ./src/app.ts",
"build": "npx tsc",
"start": "NODE_ENV=production node ./dist/app.js"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/express": "^5.0.3",
"@types/md5": "^2.3.5",
"@types/node": "^24.7.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.12.2",
"axios-cookiejar-support": "^6.0.4",
"cheerio": "^1.1.2",
"express": "^5.1.0",
"iconv-lite": "^0.7.0",
"md5": "^2.3.0",
"tough-cookie": "^5.1.2"
}
}