forked from Eureka-Shoulders/fetchx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@euk-labs/fetchx",
"version": "0.3.0",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"keywords": [
"eureka",
"http-client",
"fetch"
],
"repository": {
"type": "git",
"url": "https://github.com/Eureka-Shoulders/fetchx"
},
"author": {
"name": "Sampaio Leal",
"url": "https://sampaioleal.dev.br"
},
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js && tsc --project ./tsconfig.json --emitDeclarationOnly",
"lint": "tsc --project ./tsconfig.json --noEmit && eslint src -c .eslintrc.json --ext tsx,ts",
"test": "jest",
"gen-docs": "typedoc --options ./typedoc.config.ts"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/react": "^12.1.2",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"axios": "^0.24.0",
"babel-jest": "^27.3.1",
"esbuild": "^0.14.3",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"faker": "^5.5.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"miragejs": "^0.1.42",
"mobx": "^6.3.7",
"mobx-react-lite": "^3.2.2",
"postcss": "^8.4.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"dependencies": {
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"axios": ">=0.24.0",
"mobx": ">=6.3.7",
"react": ">=17",
"react-dom": ">=17"
}
}