-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
100 lines (100 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-plot",
"version": "3.0.0",
"description": "Library of React components to render SVG 2D plots.",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run clean && npm run build-ts",
"build-storybook": "storybook build",
"build-ts": "tsc -p tsconfig.build.json",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"dev": "storybook dev -p 6006",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"playwright": "playwright test -c playwright-ct.config.ts",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "npm run dev",
"test": "npm run playwright && npm run eslint && npm run prettier && npm run check-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-plot.git"
},
"keywords": [
"react",
"plot",
"d3-line",
"d3",
"d3-react"
],
"author": "Miguel Asencio",
"contributors": [
"Michaël Zasso",
"Sebastien Ahkrin",
"Nadjib Souab",
"Luc Patiny"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/react-plot/issues"
},
"homepage": "https://github.com/zakodium-oss/react-plot#readme",
"peerDependencies": {
"@types/react": "*",
"react": ">=18.0.0"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.48.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-storysource": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@types/d3-array": "^3.2.1",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/d3-shape": "^3.1.6",
"@types/node": "^22.7.5",
"@types/point-in-polygon": "^1.1.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^9.12.0",
"eslint-config-zakodium": "^13.0.0",
"isotopic-distribution": "^3.3.2",
"iv-analysis": "^0.4.0",
"ml-dataset-iris": "^1.2.1",
"ml-directional-distribution": "^0.1.1",
"ml-pca": "^4.1.1",
"ml-regression-simple-linear": "^3.0.1",
"ml-spectra-processing": "^14.6.0",
"ms-spectrum": "^3.6.7",
"point-in-polygon": "^1.1.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-shape": "^3.2.0",
"immer": "^10.1.1",
"ml-distance-euclidean": "^2.0.0",
"react-d3-utils": "^2.0.0"
},
"volta": {
"node": "22.9.0"
}
}