-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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-timelinev2",
"version": "2.0.0",
"description": "Reusable react components to react a good looking and responsive timeline out the box!",
"exports": {
".": "./dist/index.js",
"./*": "./*"
},
"license": "MIT",
"type": "module",
"homepage": "https://github.com/Dev-CasperTheGhost/react-timeline#readme",
"files": [
"dist"
],
"dependencies": {
"@casper124578/eslint-config-react": "^0.1.1",
"styled-components": "^5.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dev-CasperTheGhost/react-timeline.git"
},
"devDependencies": {
"@casper124578/eslint-config": "0.0.16",
"@types/node": "^16.6.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17",
"react-dom": "^17"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore"
},
"keywords": [
"frontend",
"front-end",
"responsive",
"react",
"timeline"
],
"author": {
"name": "Dev-CasperTheGhost",
"url": "https://caspertheghost.me"
},
"bugs": {
"url": "https://github.com/Dev-CasperTheGhost/react-timeline/issues"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}