-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "@code-chronicles/fetch-leetcode-problem-list",
"version": "0.0.1",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/code-chronicles-code/leetcode-curriculum.git",
"directory": "workspaces/fetch-leetcode-problem-list"
},
"author": {
"name": "Miorel-Lucian Palii",
"url": "https://github.com/miorel"
},
"main": "src/main.ts",
"scripts": {
"build": "webpack && chmod +x dist/fetch-leetcode-problem-list.js",
"format": "prettier --color --write .",
"lint": "eslint --color --max-warnings=0 .",
"start": "ts-node src/main.ts",
"typecheck": "tsc --pretty --project ."
},
"dependencies": {
"@code-chronicles/leetcode-api": "0.0.1",
"@code-chronicles/util": "0.0.1"
},
"devDependencies": {
"@code-chronicles/eslint-config": "0.0.1",
"@types/node": "22.5.5",
"eslint": "9.10.0",
"prettier": "3.3.3",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
}
}