-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "styled-transition-group",
"description": "Write react-transition-group animations with styled-components",
"version": "2.0.1",
"main": "dist/bundle.js",
"module": "dist/bundle.es.js",
"author": "Gabriela Seabra <[email protected]>",
"repository": "gabiseabra/styled-transition-group",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn run clean && yarn run build",
"lint": "eslint src",
"test": "mocha 'test/**/*.spec.{js,jsx}'",
"build": "rollup -c -m",
"clean": "rimraf ./dist"
},
"dependencies": {
"lodash.invert": "^4.3.0",
"lodash.isempty": "^4.4.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-transition-group": ">= 2.2.1",
"styled-components": ">= 4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "1.0.0-beta.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jsdom": "^16.2.0",
"mocha": "^7.0.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-transition-group": "^4.3.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"styled-components": "^5.0.1"
}
}