-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
107 lines (107 loc) · 2.94 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-event-timeline",
"description": "A responsive event timeline in React.js",
"main": "dist/index.js",
"typings": "typings",
"files": [
"dist",
"typings",
"README"
],
"scripts": {
"coverage": "codecov -f ./coverage/lcov.info",
"lint": "eslint components/ stories/ tests",
"lintfix": "npm run lint -- --fix",
"prepublish": "npm run lint && npm run build",
"storybook": "start-storybook -p 9002",
"test": "jest && tsc -p typings",
"test:watch": "jest --watch",
"build": "babel components --out-dir dist",
"docs": "build-storybook -o docs",
"commit": "git cz",
"deploy-storybook": "storybook-to-ghpages",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/rcdexta/react-event-timeline.git"
},
"keywords": [
"react",
"timeline",
"notification"
],
"author": "RC",
"license": "MIT",
"bugs": {
"url": "https://github.com/rcdexta/react-event-timeline/issues"
},
"homepage": "https://github.com/rcdexta/react-event-timeline",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-info": "^4.0.11",
"@storybook/addon-options": "^5.1.9",
"@storybook/addon-storyshots": "^4.0.11",
"@storybook/addons": "^4.0.11",
"@storybook/react": "^4.0.9",
"@storybook/storybook-deployer": "^2.5.2",
"@types/react": "^16.7.11",
"autoprefixer": "^9.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.4",
"codecov": "^3.1.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^2.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.10.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"rimraf": "^2.5.4",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.16",
"travis-deploy-once": "^5.0.9",
"typescript": "^3.2.1"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development",
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}