-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.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
{
"name": "react-depth-chart",
"version": "1.0.0",
"description": "A market depth chart made in react",
"repository": "https://github.com/Pantelwar/react-depth-chart",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs",
"watch": "rollup --watch -c --bundleConfigAsCjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"depth",
"chart",
"depth chart",
"market",
"market depth",
"market depth chart"
],
"author": "Pantelwar",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@storybook/addon-essentials": "7.0.8",
"@storybook/addon-interactions": "7.0.8",
"@storybook/addon-links": "7.0.8",
"@storybook/blocks": "7.0.8",
"@storybook/react": "7.0.8",
"@storybook/react-webpack5": "7.0.8",
"@storybook/testing-library": "0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.2",
"@types/styled-components": "^5.1.26",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rollup": "^3.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"storybook": "7.0.8",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "18.2.0"
}
}