-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "redux-flipper",
"version": "2.0.3",
"description": "Redux middleware for flipper",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "jk-gan <junkai@hey.com> (https://github.com/jk-gan)",
"contributors": [
{
"name": "Wai Pai Lee",
"email": "pailee.wai@gmail.com",
"url": "https://plwai.com/"
}
],
"homepage": "https://github.com/jk-gan/redux-flipper",
"bugs": "https://github.com/jk-gan/redux-flipper/issues",
"repository": {
"url": "https://github.com/jk-gan/redux-flipper",
"type": "git"
},
"files": [
"lib/**/*"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsc -w"
},
"peerDependencies": {
"react-native": ">=0.63.0",
"react-native-flipper": ">=0.100.0",
"redux": ">=4"
},
"devDependencies": {
"@types/node": "^16.4.8",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.4",
"typescript": "^4.3.5"
},
"dependencies": {
"cycle": "^1.0.3",
"dayjs": "^1.8.29"
}
}