-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "root",
"private": true,
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many -t build",
"build:web": "nx build @adahiya/raga-web-app",
"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",
"test": "nx run-many -t test",
"clean": "nx run-many -t clean",
"dev:web": "yarn workspace @adahiya/raga-web-app dev",
"dev:electron": "yarn workspace @adahiya/raga-app dev",
"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": "^2.0.0",
"@eslint/js": "^9.39.2",
"@lerna-lite/cli": "^4.10.2",
"@lerna-lite/version": "^4.10.2",
"@types/minimist": "^1.2.5",
"@yarnpkg/types": "^4.0.1",
"eslint": "^9.39.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"nx": "^22.3.3",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "git@github.com: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"
}
}