forked from ocavue/leetcode-profile-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "leetcode-profile-crawler",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "A crawler to collect Leetcode user profile data",
"author": "ocavue <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/ocavue",
"homepage": "https://github.com/ocavue/leetcode-profile-crawler#readme",
"repository": {
"type": "git",
"url": "https://github.com/ocavue/leetcode-profile-crawler.git"
},
"bugs": "https://github.com/ocavue/leetcode-profile-crawler/issues",
"keywords": [],
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix . && prettier --write .",
"typecheck": "tsc --noEmit",
"start": "playwright test"
},
"devDependencies": {
"@ocavue/eslint-config": "^1.3.1",
"@playwright/test": "^1.39.0",
"@types/node": "^18.18.6",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"esno": "^0.17.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}