-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.55 KB
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
{
"name": "@achmadk/react-epic-spinner-css",
"description": "Reusable react implementation of epic-spinners",
"version": "0.0.2",
"main": "./index.js",
"module": "dist/react-epic-spinner-css.esm.js",
"browser": "dist/react-epic-spinner-css.umd.min.js",
"exports": {
".": {
"import": "./dist/react-epic-spinner-css.esm.js",
"require": "./index.js"
},
"./dist/react-epic-spinner-css.css": "./dist/react-epic-spinner-css.css"
},
"repository": {
"type": "git",
"url": "git@github.com:achmadk/react-epic-spinner-css.git"
},
"author": "Achmad Kurnianto <achmad.kurnianto@gmail.com>",
"typings": "./typings/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"epic spinners",
"spinners"
],
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@linaria/babel-preset": "3.0.0-beta.18",
"@linaria/rollup": "3.0.0-beta.18",
"@linaria/webpack-loader": "3.0.0-beta.18",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-node-resolve": "13.2.1",
"@rollup/plugin-replace": "4.0.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addons": "6.4.22",
"@storybook/preset-typescript": "3.0.0",
"@storybook/react": "^6.4.22",
"@storybook/theming": "6.4.22",
"@types/react": "^16.9.51",
"babel-loader": "^8.2.5",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"fork-ts-checker-webpack-plugin": "7.2.6",
"prop-types": "^15.8.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"rollup": "^2.70.2",
"rollup-plugin-css-only": "3.1.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "7.0.2",
"ts-loader": "9.2.8",
"typescript": "4.6.3"
},
"dependencies": {
"@linaria/core": "3.0.0-beta.18",
"@linaria/react": "3.0.0-beta.18",
"@linaria/shaker": "3.0.0-beta.18"
},
"peerDependencies": {
"react": ">=0.14.x",
"react-dom": ">=0.14.x"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublish": "yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"dist",
"typings/index.d.ts",
"index.js"
],
"packageManager": "yarn@3.2.0"
}