-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.47 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
{
"version": "0.2.3",
"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",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16",
"styled-components": ">=5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-mark-image",
"author": "robin",
"module": "dist/react-mark-image.esm.js",
"size-limit": [
{
"path": "dist/react-mark-image.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-mark-image.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@rollup/plugin-url": "^6.1.0",
"@size-limit/preset-small-lib": "^6.0.3",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/components": "^6.3.12",
"@storybook/core-events": "^6.3.12",
"@storybook/react": "^6.3.12",
"@storybook/theming": "^6.3.12",
"@svgr/rollup": "^5.5.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.2.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^17.0.2",
"size-limit": "^6.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/RobinNagpal/react-mark-image"
}
}