-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.27 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
{
"version": "3.1.13",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"lint-code-style": "eslint ./src/*.ts --fix",
"types-check": "tsc --noemit",
"lint": "yarn lint-code-style && yarn types-check"
},
"peerDependencies": {
"react": ">=16"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
]
},
"name": "use-selected-items-hook",
"author": "Laura Beatris",
"module": "dist/use-selected-items-hook.esm.js",
"size-limit": [
{
"path": "dist/use-selected-items-hook.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/use-selected-items-hook.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jungsoft/eslint-config": "4.0.1",
"@size-limit/preset-small-lib": "^4.9.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-native": "^3.10.0",
"eslint-plugin-react-native-globals": "^0.1.2",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"size-limit": "^4.9.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"immutability-helper": "^3.1.1"
}
}