forked from MrBlenny/react-flow-chart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@kaliber/react-flow-chart",
"version": "1.0.5",
"description": "A flexible, stateless flow chart library for react.",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": "https://github.com/kaliberjs/react-flow-chart.git",
"devDependencies": {
"@babel/core": "^7.1.2",
"@storybook/addon-centered": "^5.3.18",
"@storybook/addon-options": "5.3.21",
"@storybook/addon-viewport": "5.3.18",
"@storybook/react": "5.3.18",
"@types/lodash": "^4.14.118",
"@types/node": "10.12.0",
"@types/pathfinding": "0.0.4",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^5.1.4",
"@types/uuid": "^8.3.0",
"@types/webpack": "4.41.24",
"babel-loader": "^8.0.4",
"lodash": "^4.17.15",
"np": "^3.0.4",
"react": "^16.8.4",
"react-dom": "^16.8.5",
"react-json-view": "^1.19.1",
"styled-components": "^5.1.0",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.4.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"pathfinding": "^0.4.18",
"react-draggable": "^4.4.3",
"react-resize-observer": "^1.1.1",
"react-zoom-pan-pinch": "^1.6.1",
"uuid": "^8.3.1"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"scripts": {
"start:storybook": "start-storybook -p 6006 -c config/storybook",
"build:storybook": "build-storybook -c config/storybook -o docs",
"build": "tsc && cp package.json dist/ && cp README.md ./dist",
"test": "npm run lint",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"sideEffects": false
}