-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
{
"name": "@redux-offline/redux-offline",
"version": "2.6.0",
"description": "Redux Offline-First Architecture",
"main": "lib/index.js",
"types": "./typings.d.ts",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore '**/__tests__/**'",
"flow:start": "flow server",
"flow:stop": "flow stop",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint src/",
"prepublishOnly": "npm run lint && npm run flow && npm run test && npm run build",
"eslint": "eslint src --fix",
"prettier": "--config .prettierrc --write",
"test": "jest",
"test:watch": "jest --watch",
"watch": "npm run build -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && flow"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"eslint src --fix"
]
},
"jest": {
"rootDir": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redux-offline/redux-offline"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-offline/redux-offline/issues"
},
"homepage": "https://github.com/redux-offline/redux-offline#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"flow-bin": "^0.124.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"redux": "^4.0.5",
"redux-devtools-instrument": "^1.9.6",
"redux-logger": "^3.0.6",
"redux-persist-node-storage": "^1.0.2",
"release": "^6.1.0"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"redux-persist": "^4.6.0"
},
"peerDependencies": {
"redux": ">=3"
}
}