-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
92 lines (92 loc) · 3.84 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": "@react-sigma/root",
"version": "4.0.3",
"description": "React Sigma",
"keywords": [
"sigma",
"react",
"graph",
"graphology"
],
"homepage": "https://sim51.github.io/react-sigma",
"bugs": "https://github.com/sim51/react-sigma/issues",
"repository": {
"type": "git",
"url": "https://github.com/sim51/react-sigma.git"
},
"license": "MIT",
"author": "Benoit Simard",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run compile && npm run build -w @react-sigma/core -w @react-sigma/layout-core -w @react-sigma/layout-circlepack -w @react-sigma/layout-circular -w @react-sigma/layout-force -w @react-sigma/layout-forceatlas2 -w @react-sigma/layout-noverlap -w @react-sigma/layout-random -w @react-sigma/examples",
"clean": "npm run clean --workspaces --if-present",
"compile": "npm run clean && npm run lint && npm run tsc",
"lerna:changed": "lerna changed",
"lerna:diff": "lerna diff",
"lerna:ls": "lerna ls",
"lerna:publish": "lerna publish --no-private",
"lerna:version": "lerna version",
"lint": "esw . --ext .ts --ext .tsx",
"start": "concurrently -n lint,compile,core,layout-core,layout-circlepack,layout-circular,layout-force,layout-forceatlas2,layout-noverlap,layout-random,storybook,website 'npm run lint -- --watch' 'npm run tsc -- --watch' 'npm run start --workspace=@react-sigma/core' 'npm run start --workspace=@react-sigma/layout-core' 'npm run start --workspace=@react-sigma/layout-circlepack' 'npm run start --workspace=@react-sigma/layout-circular' 'npm run start --workspace=@react-sigma/layout-force' 'npm run start --workspace=@react-sigma/layout-forceatlas2' 'npm run start --workspace=@react-sigma/layout-noverlap' 'npm run start --workspace=@react-sigma/layout-random' 'npm run start --workspace=@react-sigma/storybook' 'npm run start --workspace=@react-sigma/website'",
"test": "npm run test --workspaces --if-present",
"tsc": "tsc -b --preserveWatchOutput",
"website": "npm run build -w @react-sigma/storybook && npm run build -w @react-sigma/website"
},
"dependencies": {
"graphology": "^0.25.4",
"graphology-types": "^0.24.7",
"sigma": "^3.0.0-beta.16"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.42.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@sigma/node-image": "^3.0.0-beta.9",
"@sigma/node-border": "^3.0.0-beta.2",
"@sigma/node-piechart": "^3.0.0-beta.1",
"@sigma/edge-curve": "^3.0.0-beta.5",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-onboarding": "^8.0.5",
"@storybook/addon-storysource": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@svgr/rollup": "^8.1.0",
"@types/node": "^20.11.20",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-watch": "^8.0.0",
"graphology-generators": "^0.11.2",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"nodemon": "^3.1.0",
"playwright": "^1.42.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"rimraf": "^5.0.5",
"rollup": "^4.13.2",
"rollup-plugin-import-css": "^3.5.0",
"seedrandom": "^3.0.5",
"storybook": "^8.0.5",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}