-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "react-admin-amplify",
"version": "2.0.1",
"description": "AWS Amplify data provider for react-admin.",
"repository": {
"type": "git",
"url": "https://github.com/MrHertal/react-admin-amplify"
},
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"test": "jest --coverage"
},
"author": "Grégoire Hertault",
"license": "MIT",
"files": [
"build"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"aws-amplify": "^4.3.24",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.2",
"prettier": "^2.2.1",
"react": "^18.1.0",
"react-admin": "^4.1.3",
"react-dom": "^18.1.0",
"rollup": "^2.36.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^26.4.4",
"tslib": "^2.2.0",
"typescript": "<4.5.0"
},
"peerDependencies": {
"aws-amplify": "*",
"react": "*",
"react-admin": "*",
"react-dom": "*"
},
"dependencies": {
"uuid": "^8.3.2"
}
}