-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.63 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@woven-planet/lakefront",
"description": "React UI Components",
"version": "5.5.3",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"homepage": "https://github.com/woven-planet/lakefront",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "rollup -c",
"build-storybook": "storybook build -o docs-build",
"build-copy": "npm run build && copyfiles -u 1 \"dist/**/*\" $npm_config_target",
"build-watch": "rollup -c -w",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src",
"lint:fix": "eslint --ext .jsx,.js,.ts,.tsx src --fix",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"test": "jest",
"test-watch": "jest --watch",
"update-readme": "node index.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@rollup/plugin-url": "^8.0.1",
"copyfiles": "^2.4.1",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-zoom": "^3.0.0",
"mustache": "^4.2.0",
"query-string": "^7.0.0",
"ramda": "^0.28.0",
"react-router-dom": "^6.8.1",
"react-select": "^5.7.0",
"react-table": "^7.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@emotion/jest": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@react-theming/storybook-addon": "^1.1.10",
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-docs": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/react-webpack5": "^7.0.6",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/d3-selection": "^3.0.1",
"@types/d3-shape": "^3.0.2",
"@types/d3-zoom": "^3.0.1",
"@types/jest": "^27.4.1",
"@types/ramda": "^0.28.23",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@types/react-table": "^7.7.14",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.2.2",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.63.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"rollup-plugin-url": "^3.0.1",
"storybook": "^7.0.6",
"ts-node": "^10.8.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.1"
},
"peerDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-zoom": "^3.0.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist"
],
"typings": "dist/index.cjs.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/woven-planet/lakefront.git"
},
"bugs": {
"url": "https://github.com/woven-planet/lakefront/issues"
},
"keywords": [
"components",
"library"
],
"engines": {
"node": "20.x"
}
}