-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"version": "0.2.0",
"license": "MIT",
"name": "@igloo-be/ra-blocks-input",
"description": "Input blocks for react-admin",
"repository": {
"type": "git",
"url": "https://github.com/iGLOO-be/ra-blocks-input.git"
},
"author": "igloo.be",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsup-node src --watch",
"build": "tsup-node",
"lint": "eslint --ext .ts,.tsx src",
"test": "tsc --noEmit",
"prepare": "yarn build",
"demo": "cd demo && yarn dev"
},
"devDependencies": {
"@mui/icons-material": "5",
"@mui/material": "5",
"@types/react": "^18.2.63",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"next": "^14.1.2",
"prettier": "^3.2.5",
"ra-data-fakerest": "^4.16.12",
"ra-data-json-server": "^4.16.12",
"react": "^18.2.0",
"react-admin": "^4.16.12",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"tsup": "^8.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"clsx": "^2",
"dnd-core": "^16",
"nanoid": "^5",
"react-dnd": "^16",
"react-dnd-html5-backend": "^16",
"react-resizable-panels": "^2"
},
"peerDependencies": {
"@mui/icons-material": "^5",
"react": "^18",
"react-dom": "^18"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}