-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.37 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.37 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
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
{
"name": "@patternize/components",
"description": "React components for Patternize.io",
"version": "0.2.22",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/patternize/components.git"
},
"homepage": "https://github.com/patternize/components#readme",
"bugs": {
"url": "https://github.com/patternize/components/issues"
},
"keywords": [
"react",
"components",
"visualization",
"algorithms"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"unpkg": "./dist/umd/index.js",
"jsdelivr": "./dist/umd/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"start": "storybook dev -p 6006",
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:umd": "webpack --config webpack.config.js",
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn build:umd",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-storybook": "storybook build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"publish": "yarn build && npm publish"
},
"dependencies": {
"@react-spring/web": "^9.7.5",
"@storybook/react-webpack5": "^8.3.6",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^12.20.55",
"@visx/geo": "^3.5.0",
"@visx/gradient": "^3.3.0",
"@visx/group": "^3.12.0",
"@visx/hierarchy": "^3.3.0",
"@visx/responsive": "^3.3.0",
"@visx/shape": "^3.12.0",
"@visx/text": "^3.12.0",
"d3": "^7.9.0",
"postcss": "^8.4.38",
"postcss-safe-parser": "^7.0.1",
"react-jss": "^10.5.0",
"react-scripts": "^5.0.1",
"react-spring": "^9.7.4",
"resize-observer-polyfill": "^1.5.1",
"topojson-client": "^3.1.0",
"typescript": "^4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/node-logger": "^8.1.0",
"@storybook/preset-create-react-app": "^8.3.6 ",
"@storybook/react": "^8.3.6",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"storybook": "^8.3.2",
"ts-loader": "^9.5.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}