-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"private": true,
"license": "(EPL-2.0 OR MIT)",
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": ">=20.0.0"
},
"scripts": {
"all": "yarn && yarn lint",
"prepare": "lerna run prepare",
"watch": "lerna run --parallel watch",
"build": "lerna run build",
"lint": "lerna run lint -- --max-warnings 0",
"lint:fix": "yarn lint -fix",
"start": "yarn --cwd example/browser-app start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lerna": "^8.1.8",
"prettier": "^2.4.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
},
"workspaces": [
"jsonforms-property-view",
"example/browser-app",
"example/person-detail-property-view"
]
}