-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.59 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
{
"name": "react-app-devtools",
"version": "0.1.0",
"author": "Richard Harrah",
"license": "MIT",
"engines": {
"node": ">=12"
},
"main": "dist/index.js",
"module": "dist/react-app-devtools.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"build-storybook": "build-storybook",
"commit": "cz",
"lint": "dts lint",
"prepare": "is-ci || husky install && dts build",
"size": "size-limit",
"start": "dts watch",
"storybook": "start-storybook -p 6006",
"test": "dts test --passWithNoTests"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"nanoid": "3.1.29",
"tiny-warning": "1.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@size-limit/preset-small-lib": "^6.0.1",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.3.10",
"@storybook/addons": "^6.3.10",
"@storybook/react": "^6.3.10",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"cssnano": "^5.0.8",
"cz-conventional-changelog": "^3.3.0",
"dts-cli": "^0.19.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-pkg": "^0.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-postcss": "^4.0.1",
"size-limit": "^6.0.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"release": {
"branches": [
"main"
]
},
"size-limit": [
{
"path": "dist/react-app-devtools.cjs.production.min.js",
"limit": "41 KB"
},
{
"path": "dist/react-app-devtools.esm.js",
"limit": "40 KB"
}
]
}