-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "costco-ics-service",
"version": "1.0.0",
"description": " A costco employee portal scraper to get the days you work",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=prod node dist/index.js",
"dev": "cross-env NODE_ENV=dev TS_NODE=true ts-node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PnsDev/Costco-ICS-Service.git"
},
"author": "PnsDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/PnsDev/Costco-ICS-Service/issues"
},
"homepage": "https://github.com/PnsDev/Costco-ICS-Service#readme",
"dependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.8.2",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"ics-service": "^1.2.2",
"mongoose": "^6.6.5",
"node-cron": "^3.0.2",
"puppeteer": "^18.2.0",
"totp-generator": "^0.0.13"
},
"devDependencies": {
"@types/node": "^16.11.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}