-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 766 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 766 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
{
"name": "schedule-builder",
"version": "1.0.0",
"description": "Local reverse-proxy to UMass Schedule Builder that auto-authenticates via Microsoft SSO",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"cookies": "bun src/auth.ts",
"start": "bun .",
"pm2": "pm2 start ecosystem.yml"
},
"dependencies": {
"envalid": "^8.1.1",
"puppeteer": "^24.31.0",
"tough-cookie": "^6.0.0"
},
"devDependencies": {
"@lioness100/configs": "^1.0.34",
"@types/bun": "^1.3.3",
"@types/tough-cookie": "^4.0.5",
"eslint": "^8.57.0",
"prettier": "^3.6.2",
"typescript": "^5.6.3"
},
"prettier": "@lioness100/configs/prettier",
"eslintConfig": {
"extends": [
"./node_modules/@lioness100/configs/.eslintrc.json"
]
}
}