-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (71 loc) · 1.79 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
{
"name": "admin-js",
"version": "0.1.0",
"private": true,
"dependencies": {
"@vitejs/plugin-react": "4.5.1",
"react": "18.2.0",
"react-admin": "4.16.7",
"react-dom": "18.2.0",
"terser": "5.40.0",
"vite": "6.2.7",
"create-react-admin": "4.16.7",
"ra-core": "4.16.7",
"ra-data-fakerest": "4.16.7",
"ra-data-graphql-simple": "4.16.7",
"ra-data-graphql": "4.16.7",
"ra-data-json-server": "4.16.7",
"ra-data-local-forage": "4.16.7",
"ra-data-local-storage": "4.16.7",
"ra-data-simple-rest": "4.16.7",
"ra-i18n-i18next": "4.16.7",
"ra-i18n-polyglot": "4.16.7",
"ra-input-rich-text": "4.16.7",
"ra-language-english": "4.16.7",
"ra-language-french": "4.16.7",
"ra-no-code": "4.16.7",
"ra-ui-materialui": "4.16.7"
},
"devDependencies": {
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@ungap/structured-clone": "1.3.0",
"@vitest/coverage-v8": "3.2.2",
"extend-expect": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-fail-on-console": "3.3.1",
"jsdom": "26.1.0",
"vitest": "3.2.2",
"vitest-location-mock": "1.0.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react/jsx-pascal-case": [1, {"allowLeadingUnderscore": true}]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}