-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.04 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
{
"name": "react-spinner-overlay",
"version": "0.1.33",
"description": "A collection of react loading spinners and loading spinners' overlays",
"repository": {
"type": "git",
"url": "https://github.com/arisaokasaka/react-spinner-overlay"
},
"author": "Arisa Okasaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/arisaokasaka/react-spinner-overlay/issues"
},
"homepage": "https://arisaokasaka.github.io/react-spinner-overlay/",
"keywords": [
"react-spinner-overlay",
"react-spinners-overlay",
"react-loading-overlay",
"react-spinners",
"react-spinner",
"react",
"reactjs",
"loader",
"loaders",
"loading",
"spinner",
"spinners",
"halogen",
"progress",
"activity",
"overlay",
"loading-overlay",
"spinner-overlay"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.1.2"
},
"scripts": {
"build": "rm -rf dist && rollup --config scripts/rollup/rollup.config.js && yarn type-create",
"type-create": "tsc --project . --outDir ./dist --declaration --emitDeclarationOnly",
"prepublishOnly": "yarn build",
"watch": "rollup --config scripts/rollup/rollup.demo.config.js --watch",
"type-check:demo": "tsc --project tsconfig.demo.json",
"build:demo": "rollup --config scripts/rollup/rollup.demo.config.js",
"publish:demo": "yarn build:demo && gh-pages -d examples/public",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-typescript": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
"gh-pages": "^3.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "26.6.0",
"postcss": "^8.3.8",
"rollup": "^2.60.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
}
}