-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.49 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.49 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@mongodb-js/diagramming",
"description": "Diagram canvas for data modelling capabilities in MongoDB",
"version": "0.0.0",
"license": "MIT",
"main": "dist/modelling.cjs.js",
"module": "dist/modelling.es.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/modelling.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/modelling.cjs.js"
}
}
},
"types": "dist/index.d.ts",
"author": {
"name": "MongoDB Inc",
"email": "migrator-eng@mongodb.com"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/MIG/issues",
"email": "jira-help-migrator@mongodb.com"
},
"homepage": "https://github.com/mongodb-js/diagramming",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/diagramming.git"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "gh-pages -d storybook-static",
"sync-to-compass": "ts-node scripts/sync-to-compass.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@leafygreen-ui/icon": "^14.3.0",
"@leafygreen-ui/inline-definition": "^9.0.5",
"@leafygreen-ui/leafygreen-provider": "^5.0.2",
"@leafygreen-ui/palette": "^5.0.0",
"@leafygreen-ui/select": "^16.2.0",
"@leafygreen-ui/tokens": "^3.2.1",
"@leafygreen-ui/tooltip": "^14.2.1",
"@leafygreen-ui/typography": "^22.1.0",
"@xyflow/react": "12.5.1",
"d3-path": "^3.1.0",
"elkjs": "^0.11.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.12.0",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@storybook/addon-themes": "^9.0.10",
"@storybook/builder-vite": "^9.0.10",
"@storybook/react": "^9.0.10",
"@storybook/react-vite": "^9.0.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/d3-path": "^3",
"@types/jest": "30.0.0",
"@types/node": "22.15.29",
"@types/react": "18.3.18",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "3.2.4",
"eslint": "^9.24.0",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^10.2.7",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^16.0.0",
"jest-extended": "^4.0.2",
"jsdom": "^27.0.0",
"prettier": "3.6.2",
"storybook": "^9.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "7.1.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.6.0",
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}