-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 4.1 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
{
"name": "react-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"create": "bash ./create.sh",
"sample": "parcel src/sample/index.html --open",
"lifecycle-methods-example": "parcel src/lifecycle-methods-example/index.html --open",
"hoc-example": "parcel src/hoc-example/index.html --open",
"redux-example": "parcel src/redux-example/index.html --open",
"react-redux-example": "parcel src/react-redux-example/index.html --open",
"react-redux-action-creator-example": "parcel src/react-redux-action-creator-example/index.html --open",
"react-redux-thunk-example": "parcel src/react-redux-thunk-example/index.html --open",
"react-router-example": "parcel src/react-router-example/index.html --open",
"react-redux-axios-example": "parcel src/react-redux-axios-example/index.html --open",
"react-firebase-example": "parcel src/react-firebase-example/index.html --open",
"react-redux-firebase-example": "parcel src/react-redux-firebase-example/index.html --open",
"react-router-protected-route-example": "parcel src/react-router-protected-route-example/index.html --open",
"react-router-custom-link-example": "parcel src/react-router-custom-link-example/index.html --open",
"react-css-transition": "parcel src/react-css-transition/index.html",
"conditionally-add-class-example": "parcel src/conditionally-add-class-example/index.html",
"react-moment-example": "parcel src/react-moment-example/index.html",
"react-router-transition-example": "parcel src/react-router-transition-example/index.html",
"popmotion-react-example": "parcel src/popmotion-react-example/index.html",
"react-pose-example": "parcel src/react-pose-example/index.html",
"tic-tac-toe-example": "parcel src/tic-tac-toe-example/index.html",
"react-ref-example": "parcel src/react-ref-example/index.html",
"react-proptypes-example": "parcel src/react-proptypes-example/index.html",
"react-modal-example": "parcel src/react-modal-example/index.html",
"styled-components-example": "parcel src/styled-components-example/index.html",
"react-file-upload": "parcel src/react-file-upload/index.html",
"audio-viz": "parcel src/audio-viz/index.html",
"svg-in-react-example": "parcel src/svg-in-react-example/index.html",
"jest-example": "parcel src/jest-example/index.html",
"jest-example:test": "jest",
"redux-form-example": "parcel src/redux-form-example/index.html",
"formik-example": "parcel src/formik-example/index.html",
"render-props-example": "parcel src/render-props-example/index.html",
"react-context-example": "parcel src/react-context-example/index.html",
"react-usestate-example": "parcel src/react-usestate-example/index.html",
"react-useeffect": "parcel src/react-useeffect/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weareinfinite/react-playground.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/weareinfinite/react-playground/issues"
},
"homepage": "https://github.com/weareinfinite/react-playground#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"jest": "^23.3.0",
"node-sass": "^4.11.0",
"parcel-bundler": "latest"
},
"dependencies": {
"axios": "^0.17.1",
"babel-jest": "^23.4.0",
"classnames": "^2.2.5",
"firebase": "^4.9.0",
"formik": "^1.5.2",
"moment": "^2.22.1",
"popmotion-react": "^2.1.1",
"postcss-modules": "^1.1.0",
"prop-types": "^15.6.1",
"react": "latest",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "latest",
"react-pose": "^1.6.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.4.1",
"react-transition-group": "^2.3.1",
"redux": "^3.7.2",
"redux-form": "^7.4.2",
"redux-thunk": "^2.2.0",
"styled-components": "^3.3.0",
"vanilla-tilt": "^1.4.1"
}
}