-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
86 lines (86 loc) · 2.78 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
{
"name": "react-vis-timeline",
"version": "2.0.3",
"description": "React component for the vis-timeline module",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prettier": "prettier --write \"./{src,examples}/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prettier-check": "prettier -l \"./{src,examples}/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --noEmit false --emitDeclarationOnly",
"build:js": "babel src --out-dir build --extensions \".js,.ts,.tsx\" --source-maps true",
"prepublish": "npm run build",
"lint": "eslint --ext .ts,.tsx ./src/",
"lint-watch": "esw -w --clear --color .ts,.tsx ./src",
"lint-autofix": "yarn run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"{src,examples}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/razbensimon/react-vis-timeline.git"
},
"author": "razbensimon",
"license": "MIT",
"bugs": {
"url": "https://github.com/razbensimon/react-vis-timeline/issues"
},
"homepage": "https://github.com/razbensimon/react-vis-timeline#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-plugin-import": "^1.13.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"prettier": "2.0.5",
"react": "^0.14 || ^15.0 || ^16.0 || ^17.0",
"react-dom": "^0.14 || ^15.0 || ^16.0 || ^17.0",
"typescript": "^3.9.2"
},
"dependencies": {
"@egjs/hammerjs": "^2.0.17",
"component-emitter": "^1.3.0",
"keycharm": "^0.3.1",
"propagating-hammerjs": "^1.4.7",
"uuid": "^7.0.0",
"vis-data": "^7.1.0",
"vis-timeline": "^7.4.2",
"vis-util": "^4.3.4"
},
"peerDependencies": {
"lodash": "^4.17.15",
"moment": "^2.25",
"react": "^0.14 || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0 || ^16.0"
}
}