-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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
{
"name": "@urbanbigdatacentre/data-blocks",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/urbanbigdatacentre/data-blocks.git"
},
"version": "0.0.14",
"description": "React based UI Component Library for big data handling, interactions, presentation and visualisation.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "rollup -c",
"storybook": "start-storybook -p 6006",
"test-storybook": "test-storybook",
"build-storybook": "build-storybook"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"react",
"d3",
"mui",
"data-viz",
"components"
],
"author": "Andy Clarke",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.10",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.9.3",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/test-runner": "^0.7.0",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.15",
"babel-loader": "^8.2.5",
"jest": "^28.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.77.1",
"rollup-plugin-dts": "^4.2.2",
"storybook": "^6.5.10",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"dayjs": "^1.11.5"
},
"peerDependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.9.3",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@types/react": "^18.0.15",
"dayjs": "^1.11.5",
"jest": "^28.1.3",
"jest-environment-node": "28.1.3",
"jest-runner": "^28.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"dayjs": "^1.11.5",
"@mui/x-date-pickers": "^5.0.0-beta.7"
}
}