forked from MrHertal/react-admin-amplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "react-admin-amplify",
"version": "1.1.0",
"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": "ISC",
"files": [
"build"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@aws-amplify/api": "^3.0.0",
"@aws-amplify/auth": "^3.0.0",
"@aws-amplify/core": "^3.0.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.9.0",
"react-admin": "^3.0.0",
"react-dom": "^16.9.0",
"rollup": "^2.13.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"@aws-amplify/api": "^3.0.0",
"@aws-amplify/auth": "^3.0.0",
"@aws-amplify/core": "^3.0.0",
"react": "^16.9.0",
"react-admin": "^3.0.0",
"react-dom": "^16.9.0"
},
"dependencies": {}
}