forked from projectstorm/react-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
{
"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": {
"emotion": "11.*",
"lodash": "4.*",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"react": "16.* || 17.*"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/dagre": "^0.7.47",
"@types/jest": "^28.1.0",
"@types/jest-environment-puppeteer": "^5.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.39",
"@types/puppeteer": "^5.4.6",
"@types/react": "^18.0.10",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dagre": "^0.8.5",
"emotion": "^11.0.0",
"enzyme": "^3.11.0",
"file-loader": "^6.2.0",
"glob": "^8.0.3",
"jest": "^28.1.0",
"jest-cli": "^28.1.0",
"jest-puppeteer": "^6.1",
"json-beautify": "^1.1.1",
"lerna": "^5.0.0",
"lodash": "^4.17.21",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"prettier": "^2.6.2",
"puppeteer": "14.2.1",
"raf": "^3.4.1",
"raw-loader": "^4.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"val-loader": "^5.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}