-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
128 lines (128 loc) · 3.49 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-autowidth-input",
"version": "1.0.10",
"description": "Highly configurable & extensible automatically sized input field built with hooks.",
"keywords": [
"input",
"autowidth",
"react",
"reactjs"
],
"repository": {
"type": "git",
"url": "https://github.com/inkiear/react-autowidth-input"
},
"author": {
"name": "Kierian Lee",
"email": "hey@kierian.me",
"url": "https://kierian.me"
},
"license": "ISC",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"lint-staged": {
"./{src,tests}/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "concurrently \"yarn build --watch\" \"yarn storybook\"",
"build": "tsup",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"{src,tests}/**/*.+(ts|js|tsx)\"",
"lint:fix": "yarn lint --fix",
"test": "jest --coverage",
"test:ci": "yarn test --ci",
"test:watch": "jest --watch",
"prepare": "husky install",
"commit": "cz",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "yarn release-it"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-interactions": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/builder-webpack5": "6.5.13",
"@storybook/manager-webpack5": "6.5.13",
"@storybook/react": "6.5.13",
"@storybook/storybook-deployer": "2.8.16",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.2",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"babel-jest": "29.3.1",
"babel-loader": "9.1.0",
"commitizen": "^4.2.5",
"concurrently": "^7.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.27.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.7",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "^13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"release-it": "^15.5.0",
"ts-jest": "29.0.3",
"tsup": "^6.4.0",
"typescript": "4.8.4"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"react-merge-refs": ">=2"
},
"dependencies": {
"react-merge-refs": "2.0.1"
}
}