-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.6 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.6 KB
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
45
46
{
"name": "opencpp-webscraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"syncModels": "ts-node ./src/commands/syncModels",
"scrapePublicSchedule": "ts-node ./src/commands/scrapePublicSchedule",
"scrapeCurrentSchedule": "ts-node ./src/commands/scrapeCurrentSchedule",
"dropAllTables": "ts-node ./src/commands/dropAllTables.ts",
"parseGradeData": "ts-node ./src/commands/parseGradeData.ts",
"convertToJson": "ts-node ./src/commands/convertToJson.ts",
"truncateAllTables": "ts-node ./src/commands/truncateAllTables",
"calcGradeData": "ts-node ./src/commands/calcGradeData",
"rebuildEverything": "npm run dropAllTables && npm run syncModels && npm run scrapePublicSchedule && npm run parseGradeData && npm run calcGradeData",
"test": "cross-env ENV=test mocha 'test/**/*.ts' --recursive --require ts-node/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZombiMigz/opencpp-webscraper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZombiMigz/opencpp-webscraper/issues"
},
"homepage": "https://github.com/ZombiMigz/opencpp-webscraper#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.6",
"cross-env": "^7.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"puppeteer": "^21.1.1",
"read-excel-file": "^5.6.1",
"sequelize": "^6.32.1",
"ts-node": "^10.9.1"
}
}