forked from projectstorm/react-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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
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
{
"name": "@projectstorm/react-diagrams",
"author": "dylanvorster",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/projectstorm/react-diagrams.git"
},
"workspaces": [
"packages/*"
],
"keywords": [
"web",
"diagram",
"diagrams",
"react",
"typescript",
"flowchart",
"simple",
"links",
"nodes"
],
"scripts": {
"build": "yarn build:clean && lerna run build --stream",
"build:es": "lerna run build:es --stream",
"build:prod": "yarn build:clean && lerna run build:prod --stream",
"watch": "yarn build:clean && lerna run watch --stream",
"publish:dev": "yarn build:prod && lerna publish --force-publish --dist-tag=next",
"publish:prod": "yarn build:prod && lerna publish --force-publish",
"publish:storybook": "cd packages/diagrams-demo-gallery && yarn storybook:build && ../../node_modules/.bin/storybook-to-ghpages --existing-output-dir .out",
"build:clean": "lerna run clean --stream",
"test:ci": "lerna run test --stream -- --runInBand --ci ",
"pretty": "prettier --write \"packages/**/*.{ts,tsx,scss,js,jsx}\""
},
"peerDependencies": {
"closest": "^0.0.1",
"emotion": "10.*",
"lodash": "4.*",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"react": "16.*"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-options": "^5.3.21",
"@storybook/addons": "^6.0.21",
"@storybook/react": "^6.0.21",
"@storybook/storybook-deployer": "^2.8.6",
"@storybook/theming": "^6.0.21",
"@types/dagre": "^0.7.44",
"@types/jest": "^26.0.14",
"@types/jest-environment-puppeteer": "^4.3.2",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/promise": "^7.1.30",
"@types/puppeteer": "^3.0.2",
"@types/react": "^16.9.49",
"babel-loader": "^8.1.0",
"closest": "^0.0.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"dagre": "^0.8.5",
"enzyme": "^3.11.0",
"file-loader": "^6.1.0",
"glob": "^7.1.6",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"jest-puppeteer": "^4.4.0",
"json-beautify": "^1.1.1",
"lerna": "^3.22.1",
"lodash": "4.*",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"prettier": "^2.1.2",
"puppeteer": "^5.3.1",
"raf": "^3.4.1",
"raw-loader": "^4.0.1",
"react": "^16.8.6",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"source-map-loader": "^1.1.0",
"storybook-host": "^5.1.0",
"storybook-readme": "^5.0.8",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"val-loader": "^2.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}