-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 Bytes
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
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/code-chronicles-code/leetcode-curriculum.git"
},
"workspaces": [
"workspaces/*"
],
"type": "module",
"scripts": {
"format": "yarn workspace @code-chronicles/repository-scripts start format",
"lint": "code-chronicles-lint",
"prepare": "husky",
"test": "yarn workspace @code-chronicles/repository-scripts start test",
"typecheck": "code-chronicles-typecheck"
},
"devDependencies": {
"@code-chronicles/eslint-config": "workspace:*",
"@code-chronicles/repository-scripts": "workspace:*",
"@yarnpkg/types": "4.0.0",
"eslint": "9.14.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"tsx": "4.19.2"
},
"packageManager": "yarn@4.5.1"
}