-
Notifications
You must be signed in to change notification settings - Fork 309
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "@mrblenny/react-flow-chart",
"version": "0.0.14",
"description": "A flexible, stateless flow chart library for react.",
"main": "src/index.js",
"repository": "git@github.com:MrBlenny/react-flow-chart.git",
"author": "David Revay <daverevay@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@storybook/addon-centered": "^5.3.18",
"@storybook/addon-options": "5.3.18",
"@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": "^4.1.19",
"@types/uuid": "^3.4.4",
"@types/webpack": "4.4.17",
"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": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4",
"styled-components": "^5.1.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"
}
}