forked from mertyildiran/ra-data-apiato-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
{
"name": "@mimirtech/ra-data-apiato-rest",
"version": "3.3.3",
"description": "Apiato REST data provider for react-admin",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"*.md",
"lib",
"esm",
"src"
],
"authors": [
"François Zaninotto",
"M. Mert Yildiran",
"Andre Bellafronte"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mimirtechco/ra-data-apiato-rest.git"
},
"homepage": "https://github.com/mimirtechco/ra-data-apiato-rest#readme",
"bugs": "https://github.com/mimirtechco/ra-data-apiato-rest/issues",
"license": "MIT",
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch",
"prepare": "install-peers",
"lint": "eslint --fix --ext .js,.ts,.tsx \"./src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"./src/**/*.{js,ts,tsx}\""
},
"dependencies": {
"jwt-decode": "^3.1.2",
"query-string": "^5.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@types/node": "^18.11.0",
"cross-env": "^5.2.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"install-peers-cli": "^2.2.0",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"rimraf": "^2.6.3",
"typescript": "^4.8.4",
"ra-core": "^4.4"
}
}