forked from Eliav2/react-xarrows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"author": "Eliav Louski",
"main": "src/index.jsx",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/styles": "^4.11.4",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"jss": "^10.6.0",
"react": "^17.0.0",
"react-collapsible": "^2.8.3",
"react-dom": "^17.0.0",
"react-draggable": "^4.4.2",
"react-numeric-input": "^2.2.3",
"react-popout": "^1.0.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.1",
"react-spring": "^9.2.4",
"react-xarrows": "latest",
"react-zoom-pan-pinch": "^1.6.1",
"reactjs-popup": "^1.5.0",
"typescript": "^3.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"link-xarrows": "cd .. && yarn link && cd examples\\ && yarn link react-xarrows",
"fix-invalid-hooks": "npm link ../node_modules/react"
},
"keywords": [],
"name": "react-xarrows-examples",
"description": "examples for react-xarrows",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/preset-env": "^7.11.5",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@welldone-software/why-did-you-render": "^6.2.0"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}