-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.84 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
{
"version": "1.0.0-1",
"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",
"lint": "tsdx lint",
"format": "prettier --write src/",
"prepare": "yarn format && yarn build",
"audit:size": "size-limit",
"storybook:start": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"release": "release-it"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"name": "react-matchez",
"author": "Matheus Albuquerque",
"module": "dist/react-matchez.esm.js",
"size-limit": [
{
"path": "dist/react-matchez.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-matchez.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@release-it/conventional-changelog": "^4.1.0",
"@size-limit/preset-small-lib": "^7.0.5",
"@storybook/addon-essentials": "^6.4.12",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.12",
"@storybook/addons": "^6.4.12",
"@storybook/react": "^6.4.12",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"husky": "^7.0.4",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"release-it": "^14.12.4",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"ts-pattern": "^3.3.4"
}
}