forked from MrBlenny/react-flow-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "@mrblenny/react-flow-chart",
"version": "0.0.11",
"description": "A flexible, stateless flow chart library for react.",
"main": "src/index",
"repository": "[email protected]:MrBlenny/react-flow-chart.git",
"author": "David Revay <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"@storybook/addon-centered": "^5.3.17",
"@storybook/addon-options": "5.3.17",
"@storybook/addon-viewport": "5.3.17",
"@storybook/react": "5.3.17",
"@types/lodash": "^4.14.149",
"@types/node": "13.9.1",
"@types/pathfinding": "0.0.4",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"@types/uuid": "^7.0.2",
"@types/webpack": "4.41.7",
"babel-loader": "^8.0.6",
"lodash": "^4.17.15",
"np": "^6.2.0",
"react": "^16.13.0",
"react-dom": "^16.8.5",
"react-json-view": "^1.19.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"immer": "^6.0.2",
"pathfinding": "^0.4.18",
"react-color": "^2.18.0",
"react-draggable": "^4.2.0",
"react-resize-observer": "^1.1.1",
"styled-components": "^5.0.1",
"typeface-roboto": "0.0.75",
"uuid": "^7.0.2"
},
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"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",
"lint:fix": "npm run lint -- --fix"
}
}