-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "scrape-syllabus",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/coursum/scrape-syllabus-data.git",
"author": "Philipp Koch <[email protected]>",
"contributors": [
"LuckyWind_sck <[email protected]>"
],
"description": "",
"scripts": {
"scrape": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only .",
"build": "tsc",
"lint": "eslint --ext=ts src",
"lint:fix": "yarn lint --fix",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.ts": "yarn lint:fix"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.2",
"axios-rate-limit": "^1.3.0",
"cheerio": "^1.0.0-rc.9",
"commander": "^8.0.0",
"coursum-types": "https://github.com/coursum/coursum-types#v3",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^5.16.0 || ^6.8.0 || ^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}