-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "ts-use",
"version": "1.2.12",
"description": "Collection of React Hooks",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"bin": "lib/index.js",
"files": [
"lib/",
"esm/"
],
"keywords": [
"react",
"local storage",
"context",
"animation",
"hooks"
],
"scripts": {
"build:cjs": "tsc -p .",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"lint": "eslint ./src --ext .tsx",
"lint:fix": "yarn lint --fix",
"test": "jest --maxWorkers 2",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:Tihi321/ts-use.git"
},
"author": "Tihomir Selak <tknox.dr@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Tihi321/ts-use#readme",
"bugs": {
"url": "https://github.com/Tihi321/ts-use/issues"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-i18n-json": "^2.4.4",
"eslint-plugin-i18next": "^3.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsdoc": "^25.4.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.5",
"jest": "26.6.3",
"jest-localstorage-mock": "2.4.10",
"lint-staged": "^10.2.6",
"prettier": "^1.16.4",
"ts-jest": "26.5.5",
"ts-node": "9.1.1",
"tslint-react": "^5.0.0",
"react": "^17.0.1",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^17.0.1"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.5",
"@types/node-fetch": "^2.5.10",
"node-fetch": "^2.6.1",
"lodash": "^4.17.21",
"tsl-utils": "^1.0.28",
"youtube-player": "^5.5.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"./src/*.tsx": "eslint"
}
}