-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.57 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
{
"name": "@merc/react-timeline",
"version": "0.1.42",
"description": "An opinionated (but highly customizable) timeline component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"lint": "eslint src",
"format": "prettier '**/*.js' --write",
"test": "jest",
"watch": "watch 'npm run build' ./src",
"prepublish": "npm run lint && npm run test && npm run build",
"build": "rollup -c",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -c .storybook -o .out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steven-mercatante/react-timeline.git"
},
"keywords": [
"react",
"timeline"
],
"author": "Steven Mercatante",
"license": "MIT",
"bugs": {
"url": "https://github.com/steven-mercatante/react-timeline/issues"
},
"homepage": "https://github.com/steven-mercatante/react-timeline#readme",
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.merge": "^4.6.2",
"markdown-to-jsx": "^6.10.2",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">= 16.*.*",
"react-dom": ">= 16.*.*",
"styled-components": ">= 4.*.*"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.4",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-docs": "^5.2.1",
"@storybook/addon-knobs": "^5.2.1",
"@storybook/addon-notes": "^5.2.1",
"@storybook/addon-storysource": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.7",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.12.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"styled-components": "^4.4.0",
"watch": "^1.0.2"
},
"files": [
"dist"
]
}