-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 3.24 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
{
"version": "2.0.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/react-loading-overlay-ts.esm.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test --passWithNoTests",
"lint": "dts lint --fix",
"prepare": "dts build && husky install",
"prepublishOnly": "dts build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=17"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-loading-overlay-ts",
"author": "Achmad Kurnianto",
"module": "dist/react-loading-overlay-ts.esm.js",
"size-limit": [
{
"path": "dist/react-loading-overlay-ts.cjs.production.min.js",
"limit": "59 KB"
},
{
"path": "dist/react-loading-overlay-ts.esm.js",
"limit": "56 KB"
}
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@emotion/babel-plugin": "11.10.6",
"@size-limit/esbuild": "8.2.4",
"@size-limit/esbuild-why": "8.2.4",
"@size-limit/preset-small-lib": "^8.2.4",
"@skypack/package-check": "0.2.2",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addons": "^6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "4.4.5",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"babel-eslint": "10.1.0",
"babel-loader": "^9.1.2",
"dts-cli": "1.6.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.10.2",
"husky": "8.0.3",
"parcel": "2.8.3",
"prettier": "2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"size-limit": "^8.2.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"webpack": "5.75.0"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@scarf/scarf": "1.1.1",
"react-transition-group": "4.4.5"
},
"keywords": [
"react",
"loading",
"loader",
"fade",
"transition",
"spinner",
"overlay"
],
"repository": {
"type": "git",
"url": "https://github.com/achmadk/react-loading-overlay-ts"
},
"packageManager": "[email protected]"
}