-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
70 lines (70 loc) · 1.7 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
{
"name": "react-rotary-knob",
"version": "3.0.3",
"description": "Skinnable Rotary Knob for React",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hugozap/react-rotary-knob"
},
"keywords": [
"react",
"knob",
"dial",
"slider",
"rotary",
"form"
],
"dependencies": {
"d3-drag": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"prop-types": "^15.6.0",
"react-svgmt": "^2.0.2",
"uuid": "^3.2.1"
},
"scripts": {
"test": "jest",
"clean": "rimraf build",
"build": "npm run clean && node esbuild.js",
"storybook": "storybook dev -p 9001 -c .storybook",
"buildstorybook": "storybook build -c .storybook -o ./docs/storybook",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Hugo Zapata"
},
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/**/*-tests.js"
]
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@storybook/addon-mdx-gfm": "^7.0.0-rc.1",
"@storybook/react": "^7.0.0-rc.1",
"@storybook/react-webpack5": "^7.0.0-rc.1",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"babel-preset-env": "^1.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esbuild": "^0.17.11",
"esbuild-plugin-flow": "^0.3.2",
"flow-bin": "^0.64.0",
"jest": "^22.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"storybook": "^7.0.0-rc.1"
},
"license": "MIT"
}