-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
76 lines (76 loc) · 2.41 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
{
"name": "react-horizontal-timeline",
"version": "1.5.3",
"description": "A horizontal timeline component made using react",
"main": "./dist/react-horizontal-timeline.js",
"scripts": {
"start": "node tools/server.js",
"build": "cross-env NODE_ENV=production webpack --config tools/webpack.config.prod.js",
"build:demos": "cross-env NODE_ENV=production webpack --config tools/webpack.config.demos.js",
"prepublish": "yarn build",
"lint": "./node_modules/.bin/eslint --config tools/lint-config.js src/ demos/demo-swipeable-views/HorizontalTimelineConfigurator.jsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/jckdrpr/react-horizontal-timeline"
},
"keywords": [
"react",
"timeline",
"horizontal",
"react-motion",
"react-component"
],
"author": "Sherub Thakur",
"license": "MIT",
"bugs": {
"url": "https://github.com/jckdrpr/react-horizontal-timeline/issues"
},
"homepage": "https://github.com/jckdrpr/react-horizontal-timeline",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"color": "^3.0.0",
"prop-types": "^15.6.0",
"radium": "^0.25.0",
"react-dimensions": "2.0.0-alpha2",
"react-icons": "^3.1.0",
"react-motion": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.18",
"bootstrap": "^4.1.0",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"html-loader": "^0.5.1",
"jest": "^23.6.0",
"react-swipeable-views": "^0.13.0",
"react-test-renderer": "^16.5.2",
"react-transform-hmr": "^1.0.1",
"regenerator-runtime": "^0.12.1",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
}
}