This repository was archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.4 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.4 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "prefetch-rendering",
"version": "0.1.9",
"description": "A prefetch rendering provider to handling prefetch requests.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "yarn build",
"pretest": "yarn build",
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts",
"eslint-fix": "eslint src/**/*.ts --fix",
"prettier-fix": "prettier --write \"**/*.{ts,tsx}\"",
"swagger-typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polymoly/react-prefetch.git"
},
"keywords": [
"react",
"react-query",
"prefetch"
],
"author": "Alireza Hemati",
"license": "MIT",
"bugs": {
"url": "https://github.com/polymoly/react-prefetch/issues"
},
"homepage": "https://github.com/polymoly/react-prefetch#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/eslint-config": "1.1.0",
"@testing-library/react-hooks": "3.2.1",
"@testing-library/react-native": "5.0.3",
"@types/fs-extra": "^9.0.4",
"@types/invariant": "^2.2.33",
"@types/jest": "25.2.3",
"@types/react": "16.9.34",
"@types/react-native": "0.62.18",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-jest": "^24.9.0",
"babel-preset-react-native": "^4.0.1",
"commitlint": "^8.3.5",
"cross-env": "^7.0.0",
"eslint": "7.3.1",
"eslint-plugin-prettier": "3.1.4",
"fs-extra": "^9.0.1",
"husky": "^4.2.3",
"jest": "26.0.1",
"meow": "^8.0.0",
"plus-base-component": "^1.4.6",
"plus-base-core": "^1.4.5",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.12",
"react": "^17.0.2",
"react-art": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.8.2",
"react-native": "0.62.2",
"react-native-web": "^0.12.1",
"react-query": "^3.31.0",
"react-router-dom": "^6.0.1",
"react-scripts": "^3.4.0",
"react-test-renderer": "16.13.1",
"ts-jest": "25.5.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": ">=16.12",
"react-native": ">=0.61"
},
"dependencies": {
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"invariant": "^2.2.4",
"react-app-rewired": "^2.1.8",
"uuid": "^8.3.2"
},
"files": [
"lib"
],
"directories": {
"lib": "lib"
}
}