-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.08 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-io",
"version": "5.4.0-beta.5",
"description": "Data loading API",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/react-io.js",
"require": "./dist/react-io.cjs"
}
},
"main": "./dist/react-io.cjs",
"side-effects": false,
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch",
"test": "jest",
"prepare": "npm run build"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "always"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liamcmitchell/react-io.git"
},
"keywords": [
"react"
],
"author": "Liam Mitchell",
"license": "MIT",
"bugs": {
"url": "https://github.com/liamcmitchell/react-io/issues"
},
"homepage": "https://github.com/liamcmitchell/react-io#readme",
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@rollup/plugin-babel": "^5.2.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"benchmark": "^2.1.4",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.21.5",
"history": "^5.0.0",
"husky": "^4.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rxjs": "^7.2.0",
"url-io": "^5.3.0-beta.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}