-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 3.16 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@florianbepunkt/timeline",
"version": "1.1.0",
"description": "An event timeline for React",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npx rimraf ./dist && tsc && sass src/timeline.scss dist/timeline.css",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"./**/*.{ts,tsx,json}\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest --reporter=verbose",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --watch --noEmit"
},
"author": "Marius Andra <[email protected]>",
"contributors": [
{
"name": "Stanisław Chmiela",
"email": "[email protected]"
},
{
"name": "Mike Joyce",
"url": "https://github.com/mcMickJuice"
},
{
"name": "Samuel Rossetti"
},
{
"name": "amakhrov",
"url": "https://github.com/amakhrov"
},
{
"name": "Ahmad Ilaiwi",
"url": "https://github.com/Ilaiwi"
},
{
"name": "dkarnutsch",
"url": "https://github.com/dkarnutsch"
},
{
"name": "Alex Maclean",
"url": "https://github.com/acemac"
},
{
"name": "Kevin Mann",
"url": "https://github.com/kevinmanncito"
}
],
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"timeline"
],
"bugs": {
"url": "https://github.com/florianbepunkt/timeline/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/florianbepunkt/timeline"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@florianbepunkt"
},
"dependencies": {
"classnames": "2.3.2",
"interactjs": "1.10.18",
"lodash-es": "4.17.21",
"memoize-one": "6.0.0",
"ts-pattern": "5.0.5"
},
"peerDependencies": {
"date-fns": ">=2.29.3",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.4",
"@semantic-release/release-notes-generator": "11.0.4",
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-interactions": "7.2.3",
"@storybook/addon-links": "7.2.3",
"@storybook/blocks": "7.2.3",
"@storybook/react-vite": "7.2.3",
"@storybook/react": "7.2.3",
"@storybook/testing-library": "0.2.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash-es": "4.17.8",
"@types/react-dom": "18.2.7",
"@types/react": "18.2.20",
"@vitejs/plugin-react": "4.0.4",
"@vitest/coverage-c8": "0.33.0",
"date-fns": "2.30.0",
"jsdom": "22.1.0",
"prettier": "3.0.1",
"react-dom": "18.2.0",
"react": "18.2.0",
"rimraf": "5.0.1",
"sass": "1.65.1",
"semantic-release": "21.0.7",
"storybook": "7.2.3",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "0.34.1"
}
}