-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "ra-extensions",
"version": "2.0.1",
"description": "Community powered extensions for the frontend framework of react-admin 💪",
"main": "lib/index.js",
"files": ["lib/**/*"],
"scripts": {
"build" : "tsc",
"prepare" : "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/christiaanwesterbeek/ra-extensions.git",
"author": "Christiaan Westerbeek <[email protected]>",
"license": "MIT",
"keywords": [
"react-admin",
"extensions"
],
"peerDependencies": {
"@material-ui/core": "^1.4.0",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-admin": "^2.9.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.6.0",
"@typescript-eslint/parser": "2.6.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-config-react-app": "5.0.2",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.2.0",
"prettier": "1.18.2"
},
"dependencies": {
"typescript": "3.6.4"
}
}