forked from zakodium-oss/react-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
{
"name": "react-plot",
"version": "0.17.1",
"description": "Library of React components to render SVG 2D plots.",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"types": "lib-esm/index.d.ts",
"files": [
"lib",
"lib-esm"
],
"scripts": {
"build": "npm run clean && npm run build-ts",
"build-storybook": "build-storybook",
"build-ts": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"dev": "start-storybook -p 6006",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "npm run dev",
"test": "npm run eslint && 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": "*"
},
"devDependencies": {
"@simbathesailor/use-what-changed": "^2.0.0",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@types/d3-array": "^3.0.2",
"@types/d3-scale": "^4.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/d3-shape": "^3.0.2",
"@types/point-in-polygon": "^1.1.1",
"@types/react": "^17.0.39",
"@zakodium/eslint-config": "^5.1.0",
"eslint": "^8.10.0",
"isotopic-distribution": "^1.4.8",
"iv-analysis": "^0.1.3",
"ml-dataset-iris": "^1.2.1",
"ml-directional-distribution": "^0.1.0",
"ml-pca": "^4.0.2",
"ml-regression-simple-linear": "^2.0.3",
"point-in-polygon": "^1.1.0",
"ml-spectra-processing": "^11.0.0",
"ms-spectrum": "^1.6.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.5",
"webpack": "^5.69.1"
},
"dependencies": {
"d3-array": "^3.1.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-shape": "^3.1.0",
"immer": "^9.0.12",
"ml-distance-euclidean": "^2.0.0",
"react-d3-utils": "^0.5.0"
}
}