-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
93 lines (93 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
{
"name": "@react-sigma/root",
"version": "5.0.0",
"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 && lerna run build",
"clean": "lerna run clean",
"compile": "npm run clean && npm run lint && npm run tsc",
"lerna:changed": "lerna changed",
"lerna:diff": "lerna diff",
"lerna:ls": "lerna ls",
"lerna:publish": "npm run clean && npm run build && lerna publish --no-private from-package",
"lerna:version": "lerna version",
"lint": "eslint",
"start": "lerna run start --parallel",
"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.8",
"sigma": "^3.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@playwright/test": "^1.49.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-url": "^8.0.2",
"@sigma/edge-curve": "^3.1.0",
"@sigma/node-border": "^3.0.0",
"@sigma/node-image": "^3.0.0",
"@sigma/node-piechart": "^3.0.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@svgr/rollup": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.10.6",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/seedrandom": "^3.0.8",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"graphology-generators": "^0.11.2",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"nodemon": "^3.1.9",
"playwright": "^1.49.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"rollup-plugin-import-css": "^3.5.8",
"seedrandom": "^3.0.5",
"storybook": "^8.4.7",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}