forked from projectstorm/react-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.85 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
{
"name": "@projectstorm/react-diagrams",
"author": "dylanvorster",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/projectstorm/react-diagrams.git"
},
"workspaces": [
"diagrams-demo-gallery",
"diagrams-demo-project",
"packages/*"
],
"keywords": [
"web",
"diagram",
"diagrams",
"react",
"typescript",
"flowchart",
"simple",
"links",
"nodes"
],
"scripts": {
"clean": "tsc --build --clean && lerna run clean --stream",
"build": "tsc --build && lerna run build --stream",
"build:prod": "NODE_ENV=production yarn build",
"publish:dev": "yarn build:prod && lerna publish --force-publish --dist-tag=next",
"publish:prod": "yarn build:prod && lerna publish --force-publish",
"publish:storybook": "cd diagrams-demo-gallery && yarn storybook:build && ../node_modules/.bin/storybook-to-ghpages --existing-output-dir .out",
"test:ci": "lerna run test --stream -- --runInBand --ci ",
"test": "lerna run test --stream",
"pretty": "prettier --write \"**/*.{ts,tsx,scss,js,jsx}\""
},
"peerDependencies": {
"closest": "^0.0.1",
"emotion": "11.*",
"lodash": "4.*",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"react": "17.*"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-options": "^5.3.21",
"@storybook/addons": "^6.2.8",
"@storybook/react": "^6.2.8",
"@storybook/storybook-deployer": "^2.8.7",
"@storybook/builder-webpack5": "^6.2.8",
"@storybook/theming": "^6.2.8",
"@types/dagre": "^0.7.44",
"@types/jest": "^26.0.22",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/promise": "^7.1.30",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.3",
"babel-loader": "^8.2.2",
"closest": "^0.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"dagre": "^0.8.5",
"enzyme": "^3.11.0",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"json-beautify": "^1.1.1",
"lerna": "^4.0.0",
"lodash": "4.*",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"prettier": "^2.2.1",
"puppeteer": "^8.0.0",
"raf": "^3.4.1",
"raw-loader": "^4.0.2",
"react": "^16.8.6",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.1",
"storybook-host": "^5.2.0",
"storybook-readme": "^5.0.9",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"val-loader": "^3.1.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^2.5.2"
}
}