-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.21 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.21 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
{
"name": "@logora/debate",
"version": "0.3.33",
"type": "module",
"license": "AGPL-3.0",
"description": "Design system of @Logora made with React",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist",
"styles",
"src/components/styles"
],
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles/*": "./styles/_*.scss",
"./package.json": "./package.json"
},
"author": "Logora <contact@logora.fr>",
"scripts": {
"build": "vite build --config vite.lib.config.mjs",
"dev": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "npx @biomejs/biome format --write ./src",
"lint": "npx @biomejs/biome lint ./src",
"check": "npx @biomejs/biome check ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Logora/interface.git"
},
"engines": {
"node": ">=18.0"
},
"keywords": [
"ui",
"design-system",
"react",
"logora",
"debate"
],
"bugs": {
"url": "https://github.com/Logora/interface/issues"
},
"homepage": "https://github.com/Logora/interface#readme",
"dependencies": {
"@lexical/headless": "^0.43.0",
"@lexical/html": "^0.43.0",
"@lexical/list": "^0.43.0",
"@lexical/overflow": "^0.43.0",
"@lexical/react": "^0.43.0",
"@lexical/rich-text": "^0.43.0",
"@lexical/selection": "^0.43.0",
"@lexical/utils": "^0.43.0",
"@rooks/use-localstorage-state": "^4.11.2",
"@rooks/use-previous": "^4.11.2",
"@rooks/use-sessionstorage-state": "^4.11.2",
"axios": "^1.11.0",
"chart.js": "^4.5.1",
"chartjs-plugin-datalabels": "^2.2.0",
"classnames": "^2.5.1",
"dompurify": "^3.3.3",
"flat": "^5.0.2",
"lexical": "^0.43.0",
"path-to-regexp": "^6.3.0",
"react-chartjs-2": "^5.3.1",
"react-copy-to-clipboard": "^5.1.1",
"react-hot-toast": "^2.4.1",
"react-intl": "^7.0.1",
"react-loading-skeleton": "^3.5.0",
"react-modern-drawer": "^1.4.0",
"react-oauth-popup": "^1.0.5",
"react-router": "^6.29.0",
"react-router-dom": "^6.29.0",
"use-debounce": "^10.0.4",
"use-onclickoutside": "^0.4.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@faker-js/faker": "^10.4.0",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/react": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.1.4",
"jsdom": "^29.0.2",
"sass": "^1.85.0",
"storybook": "^10.3.5",
"vite": "^7.3.2",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router": "^6.29.0",
"react-router-dom": "^6.29.0"
}
}