-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 KB
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
{
"name": "react-d3-axis-ts",
"version": "1.0.4",
"description": "React replacement of d3-axis",
"license": "MIT",
"author": "https://github.com/ts-web/",
"funding": "https://github.com/sponsors/ts-web",
"keywords": [
"react",
"d3-axis"
],
"repository": {
"type": "git",
"url": "https://github.com/ts-web/react-d3-axis-ts.git"
},
"homepage": "https://ts-web.github.io/react-d3-axis-ts/",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepack": "pnpm run build",
"start": "start-storybook -p 6007",
"all": "FORCE_COLOR=1 run-p build chk test lint",
"clean": "rimraf lib",
"build-storybook": "build-storybook",
"chk": "FORCE_COLOR=1 run-p 'chk:*'",
"chk:tsc-stories": "tsc -p src/stories/tsconfig.json",
"lint": "eslint 'src/**/*' --format codeframe --report-unused-disable-directives",
"test": "echo noop",
"watch": "FORCE_COLOR=1 run-p 'watch:*'",
"watch:ts": "tsc -w --preserveWatchOutput",
"storybook": "start-storybook -p 6006"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@babel/preset-typescript": "^7",
"@eslint/js": "^9.9.1",
"@storybook/addon-actions": "^6",
"@storybook/builder-webpack5": "^6",
"@storybook/manager-webpack5": "^6",
"@storybook/react": "^6",
"@stylistic/eslint-plugin": "^2.6.4",
"@types/d3": "^7",
"@types/d3-scale": "^4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.0",
"@types/react": "^18",
"babel-loader": "^8",
"d3": "^7",
"d3-scale": "^4",
"eslint": "^9.9.1",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-react-hooks": "5.1.0-rc-b57d2823-20240822",
"npm-run-all": "^4.1.5",
"react": "^18",
"react-dom": "^18",
"tsconfig-paths-webpack-plugin": "^4",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"files": [
"dist"
]
}