-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
96 lines (96 loc) · 2.69 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
{
"name": "react-timeline-9000",
"version": "2.0.0",
"description": "Performance focused timeline for react",
"private": false,
"scripts": {
"build": "webpack --config webpack.prod.js",
"build_lib": "babel src --out-dir lib --ignore demo*,setupTests.js,*.test.js --copy-files --source-maps inline",
"build_demo": "webpack --config webpack.demo.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"docs": "esdoc",
"pretty": "prettier --write --tab-width 4 \"src/**/*.js\"",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/React9k/react-timeline-9000.git"
},
"keywords": [
"react",
"timeline"
],
"engines": {
"node": ">=4.2.4"
},
"author": "Leighton Lilford",
"license": "MIT",
"bugs": {
"url": "https://github.com/React9k/react-timeline-9000/issues"
},
"files": [
"dist",
"lib"
],
"main": "lib/index.js",
"homepage": "https://github.com/React9k/react-timeline-9000#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@storybook/addon-actions": "^6.3.11",
"@storybook/addon-essentials": "^6.3.11",
"@storybook/addon-links": "^6.3.11",
"@storybook/react": "^6.3.11",
"antd": "^3.6.5",
"babel-loader": "^8.2.5",
"chai": "^4.1.2",
"core-js": "^2.4.0",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "5.5.0",
"husky": "^0.14.3",
"ignore-styles": "^5.0.1",
"jsdom": "^16.5.0",
"lint-staged": "8.2.1",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^0.21.0",
"tern": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"core-js": "^2.4.0",
"interactjs": "^1.6.2",
"lodash": "^4.17.19",
"moment": "^2.22.2",
"react-virtualized": "^9.19.1"
},
"peerDependencies": {
"react": "^16.4.1 || ^17.0.0",
"react-dom": "^16.4.1 || ^17.0.0"
}
}