-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
106 lines (106 loc) · 3.4 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@nozbe/with-observables",
"version": "1.6.0",
"main": "dist/with-observables.cjs.js",
"module": "dist/with-observables.esm.js",
"scripts": {
"build": "rollup -c",
"flow": "flow check --color always",
"eslint": "eslint ./src -c ./.eslintrc.js --cache --cache-location ./.cache/.eslintcache",
"test": "jest --config=./jest.config.js",
"test:typescript": "cd __tests__/typescript && yarn && yarn test",
"ci:check": "concurrently -n test,eslint,flow,ts 'yarn test' 'yarn eslint' 'yarn flow' 'yarn test:typescript' --kill-others-on-fail",
"ci": "yarn ci:check",
"prettier": "prettier --write src __tests__"
},
"files": [
"dist",
"src",
"index.d.ts",
"CHANGELOG.md"
],
"author": "@Nozbe",
"homepage": "https://github.com/Nozbe/withObservables#readme",
"bugs": "https://github.com/Nozbe/withObservables/issues",
"license": "MIT",
"keywords": [
"react",
"react-native",
"hoc",
"reactive",
"rxjs",
"observable",
"watermelondb"
],
"repository": {
"type": "git",
"url": "https://github.com/Nozbe/withObservables.git"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"peerDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16||^17||^18",
"react": "^16||^17||^18"
},
"peerDependenciesMeta": {
"@types/hoist-non-react-statics": {
"optional": true
},
"@types/react": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
"@babel/plugin-transform-block-scoping": "^7.20.15",
"@babel/plugin-transform-classes": "^7.20.7",
"@babel/plugin-transform-destructuring": "^7.20.7",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/plugin-transform-function-name": "^7.18.9",
"@babel/plugin-transform-literals": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/plugin-transform-react-jsx": "^7.20.13",
"@babel/plugin-transform-spread": "^7.20.7",
"@babel/plugin-transform-template-literals": "^7.18.9",
"@babel/runtime": "^7.20.13",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.9.23",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-core": "^7.0.0-0",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"flow-bin": "0.199.1",
"jest": "^29.4.1",
"react": "^18.2.0",
"prettier": "^2.8.3",
"rollup": "^3.13.0",
"rollup-cli": "^1.0.9",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.0.0",
"typescript": "^4.5.0"
}
}