-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.89 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@userclouds/root",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.18.0"
},
"workspaces": {
"packages": [
"sharedui",
"console/consoleui",
"plex/plexui",
"ui-component-lib"
]
},
"scripts": {
"sharedui:dev": "yarn workspace @userclouds/sharedui dev",
"sharedui:build": "yarn workspace @userclouds/sharedui build",
"consoleui:dev": "yarn workspace @userclouds/consoleui dev",
"consoleui:build": "yarn workspace @userclouds/consoleui build",
"consoleui:test": "yarn workspace @userclouds/consoleui test",
"plexui:dev": "yarn workspace @userclouds/plexui dev",
"plexui:build": "yarn workspace @userclouds/plexui build",
"ui-lib:watch": "yarn workspace @userclouds/ui-component-lib watch",
"ui-lib:dev": "yarn workspace @userclouds/ui-component-lib dev",
"ui-lib:build": "yarn workspace @userclouds/ui-component-lib build",
"format": "yarn run prettier . --write"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.9.0",
"history": "^5.1.0",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6.3.0",
"typescript": "^4.5.2",
"typescript-plugin-css-modules": "^3.4.0"
},
"resolutions": {
"@codemirror/state": "6.4.1"
},
"packageManager": "yarn@4.5.1",
"dependencies": {
"playwright": "^1.51.1"
}
}