-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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": "use-api-poller-worker",
"version": "1.0.2",
"description": "React hook for api-poller-worker",
"main": "dist/useApiPollerWorker.js",
"repository": "brianmcallister/use-api-poller-worker",
"license": "MIT",
"author": {
"name": "Brian Wm. McAllister",
"email": "brian@brianmcallister.com",
"url": "https://www.brianmcallister.com"
},
"files": [
"dist/**/*"
],
"keywords": [
"react",
"hook",
"api",
"polling",
"real-time",
"webworker",
"javascript"
],
"scripts": {
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore ./src",
"prepare": "rimraf dist && tsc && rimraf dist/*/__tests__",
"stylelint": "stylelint demo/**/*.scss",
"test": "jest --coverage",
"types": "tsc --noEmit"
},
"dependencies": {
"api-poller-worker": "^1.1.0"
},
"optionalDependencies": {
"@types/react": "^16.9.11"
},
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "24.0.23",
"@typescript-eslint/eslint-plugin": "2.7.0",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-typescript": "6.1.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.3",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.2.0",
"eslint-plugin-unicorn": "12.1.0",
"jest": "^25.2.7",
"prettier": "1.19.1",
"react": "^16.12.0",
"react-test-renderer": "16.12.0",
"rimraf": "3.0.0",
"stylelint": "11.1.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-sass-guidelines": "6.1.0",
"stylelint-scss": "3.12.1",
"ts-jest": "^25.3.1",
"typescript": "3.7.2"
}
}