-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "smu-scraper",
"version": "2.0.0",
"main": "index.js",
"author": "Amos <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/ical": "./src/types/ical.js",
"@types/jsdom": "^16.2.5",
"@types/node": "^18.7.3",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"fs": "^0.0.1-security",
"ical.js": "^1.5.0",
"jsdom": "^16.4.0",
"moment-timezone": "^0.5.33",
"node-fetch": "^2.6.1",
"path": "^0.12.7",
"rss-parser": "^3.9.0"
},
"engines": {
"node": "^16.16.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node ./index.ts",
"build": "tsc --outDir dist",
"test": "echo Hi!"
}
}