-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.45 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
{
"name": "react-fader",
"version": "0.0.0-development",
"description": "component that fades out old children, then fades in new children when its children change",
"sideEffects": false,
"scripts": {
"demo:dev": "webpack-dev-server",
"build:demo": "cross-env NODE_ENV=production BABEL_ENV=es5 webpack",
"predeploy": "yarn build:demo",
"deploy": "gh-pages -d demo",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/react-fader.git"
},
"keywords": [
"react",
"animation",
"transition",
"fade"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/react-fader/issues"
},
"homepage": "https://github.com/jcoreio/react-fader#readme",
"devDependencies": {
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@jcoreio/toolchain": "3.4.0",
"@jcoreio/toolchain-esnext": "3.4.0",
"@jcoreio/toolchain-flow": "3.4.0",
"@jcoreio/toolchain-mocha": "3.4.0",
"@jcoreio/toolchain-react": "3.4.0",
"@jcoreio/toolchain-typescript": "3.4.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@testing-library/react": "^14.2.1",
"@types/chai": "^4.3.5",
"@types/inline-style-prefixer": "^3.0.1",
"@types/node": "^20.3.1",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"chai": "^4.3.7",
"copy": "^0.3.2",
"cross-env": "^5.2.0",
"delay": "^2.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-react": "^7.32.2",
"flow-bin": "^0.113.0",
"gh-pages": "^2.0.1",
"global-jsdom": "^9.0.1",
"jsdom": "^22.1.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^10.2.0",
"puppeteer": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-router-transition-switch": "^1.0.2",
"rimraf": "^2.6.0",
"sinon": "^17.0.1",
"typescript": "^5.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@jcoreio/toolchain-semantic-release": "^3.4.0",
"inline-style-prefixer": "^3.0.6",
"prop-types": "^15.6.0",
"react-transition-context": "^5.1.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}