-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.5 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
{
"name": "react-admin-packages",
"version": "1.0.0",
"private": true,
"author": {
"name": "Matteo Saloni",
"email": "[email protected]"
},
"repository": "https://github.com/smartcommunitylab/react-admin-packages",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"release": "lerna publish from-package --yes ",
"lint": "eslint --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\" ",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,ts,tsx,css}\""
},
"devDependencies": {
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^6.3.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"typescript": "^5.2.2",
"webpack": "^5.70.0"
},
"main": "index.js",
"dependencies": {},
"eslintConfig": {}
}