forked from tisoap/react-flow-smart-edge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.67 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.67 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
124
125
126
{
"name": "@tisoap/react-flow-smart-edge",
"version": "3.0.0",
"keywords": [
"react",
"typescript",
"graph",
"flow",
"flowchart",
"smart",
"edge",
"pathfinding",
"react-flow-smart-edge"
],
"homepage": "https://tisoap.github.io/react-flow-smart-edge/",
"repository": {
"type": "git",
"url": "https://github.com/tisoap/react-flow-smart-edge.git"
},
"license": "MIT",
"author": "Tiso Alvarez Puccinelli",
"main": "dist/index.js",
"module": "dist/react-flow-smart-edge.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn build-storybook && yarn build-component",
"build-component": "dts build",
"build-storybook": "build-storybook",
"check-types": "tsc --noEmit",
"chromatic": "chromatic --exit-zero-on-changes --project-token f5598c842f1a",
"deploy-component": "np --any-branch",
"deploy-storybook": "gh-pages -d storybook-static",
"install-playwright": "playwright install --with-deps",
"lint": "dts lint src",
"lint-fix": "dts lint src --fix",
"predeploy": "yarn build",
"prepare": "dts build",
"start": "dts watch",
"storybook": "start-storybook -p 6006 --ci",
"test": "yarn check-types && yarn lint && yarn test-storybook-ci",
"test-storybook": "test-storybook",
"test-storybook-ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook --quiet && http-server storybook-static --port 6006 --silent\" \"wait-on tcp:6006 && yarn test-storybook\"",
"ui": "yarn upgrade-interactive --latest"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"dependencies": {
"pathfinding": "0.4.18"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@shopify/eslint-plugin": "42.0.1",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-interactions": "6.5.13",
"@storybook/addons": "6.5.13",
"@storybook/builder-webpack5": "6.5.13",
"@storybook/components": "6.5.13",
"@storybook/core-events": "6.5.13",
"@storybook/jest": "0.0.10",
"@storybook/manager-webpack5": "6.5.13",
"@storybook/react": "6.5.13",
"@storybook/test-runner": "0.9.0",
"@storybook/testing-library": "0.0.13",
"@storybook/theming": "6.5.13",
"@tisoap/eslint-config-ts-react": "7.0.0",
"@types/node": "18.11.9",
"@types/pathfinding": "0.0.6",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"chromatic": "6.11.4",
"concurrently": "7.5.0",
"dts-cli": "1.6.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-prefer-function-component": "3.1.0",
"eslint-plugin-sonarjs": "0.16.0",
"eslint-plugin-storybook": "0.6.7",
"eslint-plugin-testing-library": "5.9.1",
"eslint-plugin-unicorn": "44.0.2",
"gh-pages": "4.0.0",
"http-server": "14.1.1",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-circus": "29.3.1",
"jest-environment-node": "29.3.1",
"np": "7.6.2",
"playwright": "1.28.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reactflow": "11.2.0",
"require-from-string": "2.0.2",
"typescript": "4.9.3",
"wait-on": "6.0.1",
"webpack": "5.75.0"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"reactflow": ">=11",
"typescript": ">=4.6"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}