-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "board-scraper",
"version": "1.0.0",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/icpc-scu-community/board-scraper"
},
"scripts": {
"start": "node -r dotenv/config dist",
"dev": "ts-node-dev --respawn -r dotenv/config src",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "eslint ./src --ext .js,.ts",
"typecheck": "tsc --noEmit -p ."
},
"author": "Kerollos Magdy",
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "11.4",
"@types/node": "^20.4.5",
"cheerio": "^1.0.0-rc.12",
"codeforces-rcpc": "^1.0.4",
"dotenv": "^16.3.1",
"got": "^11.8.5",
"mongodb": "^5.7.0",
"mongoose": "^7.4.1",
"spinnies": "^0.5.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}