-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@ra-libs/react",
"version": "2.0.5",
"description": "React admin front components and utils",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "pnpm build",
"prebuild": "rimraf dist",
"build": "pnpm prebuild & pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"format": "prettier --write \"src/**/*.ts\"",
"prelint": "pnpm prettier",
"lint": "eslint \"src/{**/*,*}.{js,ts,jsx,tsx}\"",
"lint:fix": "eslint --fix \"src/{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"presemantic-release": "pnpm build",
"semantic-release": "semantic-release"
},
"keywords": [
"react-admin",
"ra",
"react"
],
"publishConfig": {
"access": "public"
},
"author": "Rabah Zeineddine",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@testing-library/react": "^16.0.0",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/mui-image": "^1.0.5",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.4",
"@mui/lab": "^5.0.0-alpha.172",
"@mui/material": "^5.16.4",
"@mui/x-date-pickers": "^7.11.0",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.7.2",
"csstype": "^3.1.3",
"date-fns": "^3.6.0",
"dayjs": "^1.11.12",
"i18n-iso-countries": "^7.11.3",
"js-tokens": "^9.0.0",
"lodash": "^4.17.21",
"loose-envify": "^1.4.0",
"mui-image": "^1.0.7",
"mui-tel-input": "^5.1.2",
"ra-data-simple-rest": "^5.0.4",
"react-admin": "^5.0.4",
"react-hook-form": "^7.52.1",
"react-imask": "^7.6.1",
"react-number-format": "^5.4.0",
"scheduler": "^0.23.2",
"timezones.json": "^1.7.1",
"tslib": "^2.6.3"
},
"peerDependencies": {
"react": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ra-libs/react.git"
},
"bugs": {
"url": "https://github.com/ra-libs/react/issues"
},
"homepage": "https://github.com/ra-libs/react#readme"
}