-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.43 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
{
"name": "flow-castro",
"homepage": ".",
"version": "0.2.19",
"description": "A React library to create visual flow editors",
"keywords": [
"react",
"flow",
"editor",
"node-editor",
"visual-programming"
],
"author": "Daniel Lobo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danlobo/flow-castro.git"
},
"files": [
"dist",
"README.md"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd": "dist/umd/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@mdi/js": "^7.3.67",
"@mdi/react": "^1.6.1",
"nanoid": "^4.0.2",
"react-zoom-pan-pinch": "^2.6.1"
},
"scripts": {
"dev": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"clear": "rm -rf dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"prepare": "npm run clear && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"up": "npm version patch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@chromatic-com/storybook": "^1.2.23",
"@modular-css/rollup": "^29.0.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-essentials": "^8.0.2",
"@storybook/addon-interactions": "^8.0.2",
"@storybook/addon-links": "^8.0.2",
"@storybook/addon-onboarding": "^8.0.2",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.2",
"@storybook/react": "^8.0.2",
"@storybook/react-webpack5": "^8.0.2",
"@storybook/test": "^8.0.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"ajv-keywords": "^5.0.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^30.0.5",
"eslint-plugin-storybook": "^0.8.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"node-sass": "^9.0.0",
"postcss": "^8.4.27",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.3.1",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-serve": "^2.0.2",
"storybook": "^8.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"resolutions": {
"ajv-keywords": "^5.0.0"
},
"packageManager": "yarn@3.6.0+sha512.418e45c2268c4d6b69a28f3939084b5853d5f392c43c0b5588bd1995a96e328414ae4b7777a8980c64bad4328c52586ff879b289f98ae65372a55fa4d0ff70dd"
}