-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·67 lines (67 loc) · 1.8 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
{
"name": "react-concurrent",
"version": "2.2.2",
"description": "A new Render-as-You-Fetch pattern for fetching data.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"prepare": "yarn build",
"build": "rm -rf ./lib && yarn compile",
"lint": "eslint --ext '.ts' ./src",
"test": "yarn build && jest",
"changeLog": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hosseinmd/react-concurrent.git"
},
"keywords": [
"react",
"Render-as-You-Fetch",
"concurrent",
"fetch",
"async",
"hooks"
],
"author": "Hossein mohammadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/hosseinmd/react-concurrent/issues"
},
"homepage": "https://github.com/hosseinmd/react-concurrent#readme",
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^26.6.3",
"commitlint": "^11.0.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"prettier-plugin-jsdoc": "^0.2.4",
"react": "^17.0.1",
"react-art": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"react-test-renderer": "^17.0.1",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.13"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn compile --noEmit"
}
}
}