-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.39 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
43
44
45
46
47
{
"name": "root",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many -t build",
"check-format": "prettier --check \"./**/*.{js,json,md,scss,ts,tsx,yaml,yml}\"",
"check-lint": "nx run-many -t check-lint",
"check-types": "nx run-many -t check-types",
"clean": "nx run-many -t clean",
"dist": "nx run-many -t dist",
"fix-format": "prettier --write \"./**/*.{js,json,md,scss,ts,tsx,yaml,yml}\"",
"fix-lint": "nx run-many -t lint-fix"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@lerna-lite/cli": "^3.10.1",
"@lerna-lite/version": "^3.10.1",
"@types/eslint__js": "^8.42.3",
"@types/minimist": "^1.2.5",
"@yarnpkg/types": "^4.0.0",
"eslint": "^9.17.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"nx": "^20.2.2",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "[email protected]:adidahiya/raga.git"
},
"resolutions": {
"file-selector@npm:^0.6.0": "patch:file-selector@npm%3A0.6.0#~/.yarn/patches/file-selector-npm-0.6.0-04259af1f7.patch"
}
}