-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "react-d3-utils",
"version": "3.0.0",
"description": "Low-level utilities to build charts with React and D3",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run clean && npm run build-ts",
"build-ts": "tsc -p tsconfig.build.json",
"build-storybook": "storybook build",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"dev": "storybook dev -p 6006",
"eslint": "eslint src stories",
"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 prettier && npm run check-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-d3-utils.git"
},
"author": "Michael Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/react-d3-utils/issues"
},
"homepage": "https://github.com/zakodium-oss/react-d3-utils#readme",
"devDependencies": {
"@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/react": "^18.3.11",
"eslint": "^9.12.0",
"eslint-config-zakodium": "^13.0.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/d3-scale": "^4.0.8",
"d3-scale": "^4.0.2",
"use-resize-observer": "^9.1.0"
},
"volta": {
"node": "22.9.0"
}
}