-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "switch-css-transition-group",
"version": "0.2.3",
"description": "Combination of ReactCSSTransitionGroup and Switch for triggering transition between child routes.",
"main": "lib/index.js",
"scripts": {
"start": "NODE_ENV=development babel --plugins transform-react-jsx -s inline -d lib -w src",
"build": "babel -s inline -d lib src",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook -o .storybook/build",
"deploy-storybook": "storybook-to-ghpages"
},
"keywords": [
"switch",
"transition",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/melounek/switch-css-transition-group"
},
"author": "Petr Heralecky",
"license": "ISC",
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/react": "^3.4.10",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.1.2",
"babel-preset-stage-2": "^6.24.1",
"storybook-router": "^0.3.4",
"webpack": "^4.23.1"
},
"dependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^1.2.1"
}
}