-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "react-trivial-timeline",
"version": "1.2.2",
"description": "Dead simple react vertical event timeline component",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook -p 6006",
"lint": "eslint '{src,stories}/*.{js,jsx}'",
"lint:fix": "eslint '{src,stories}/*.{js,jsx}' --fix",
"build-storybook": "build-storybook",
"prepare": "npm run build",
"build": "babel src -d dist",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"yarn lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tverdohleb/react-trivial-timeline.git"
},
"keywords": [
"timeline",
"react"
],
"author": "Valeriy Tverdohleb",
"license": "MIT",
"bugs": {
"url": "https://github.com/tverdohleb/react-trivial-timeline/issues"
},
"homepage": "https://github.com/tverdohleb/react-trivial-timeline#readme",
"peerDependencies": {
"prop-types": "^15.6.2",
"react": ">=16.7",
"react-dom": ">=16.7",
"styled-components": "^4.1.3 || ^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@storybook/addon-actions": "5.3.10",
"@storybook/addon-links": "5.3.10",
"@storybook/addons": "5.3.10",
"@storybook/react": "5.3.10",
"@storybook/storybook-deployer": "2.8.1",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "3.1.0",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"styled-components": "5.0.1",
"webpack": "4.41.5"
}
}