-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 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
61
62
63
64
65
66
67
68
69
70
{
"name": "streamr-client-react",
"version": "3.2.0",
"description": "React toolkit for Streamr.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"prettier": "prettier --write src",
"start": "rollup -c -w",
"build": "rollup -c",
"prepack": "npm run clean && npm run build",
"clean": "rm `bin/clean` || true",
"test": "NODE_ENV=test jest --detectOpenHandles"
},
"keywords": [
"streamr",
"data"
],
"contributors": [
"Mariusz Roliński <[email protected]> (https://www.mariusz.io)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/streamr-client-react.git"
},
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-url": "^8.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"esbuild": "^0.17.6",
"eslint": "^8.33.0",
"eslint-config-streamr-ts": "^4.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-fast-compare": "^3.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.14.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"@streamr/sdk": "^100.0.0-rc.0",
"streamr-client-protocol": "*",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"process": "^0.11.10",
"react": ">=16.8.0",
"@streamr/sdk": "^100.0.0-rc.0",
"react-fast-compare": "^3.2.0"
}
}