-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.6 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.6 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": "@gouvfr-lasuite/ui-kit",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.20.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style": "./dist/style.css",
"./sass/fonts": "./dist/sass/fonts.scss",
"./fonts/Marianne": "./dist/assets/fonts/Marianne/Marianne-font.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp cunningham.ts dist/cunningham.ts && yarn build-fonts",
"build-fonts": "shx mkdir -p dist/sass && shx mkdir -p dist/assets && shx cp src/styles/fonts.scss dist/sass/fonts.scss && shx cp -R src/assets/fonts dist/assets/fonts",
"lint": "eslint . --report-unused-disable-directives",
"preview": "vite preview",
"test": "vitest run",
"build-theme": "cunningham -g css,scss,ts -o src && mv src/cunningham-tokens.scss src/cunningham-tokens-sass.scss",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-icons": "tsx scripts/generate-icons.ts",
"scalingo-postbuild": "yarn build && yarn build-storybook"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@fontsource/material-icons": "5.2.5",
"@gouvfr-lasuite/cunningham-react": "4.3.0",
"@gouvfr-lasuite/cunningham-tokens": "3.1.0",
"@gouvfr-lasuite/integration": "1.0.2",
"@types/node": "22.10.7",
"clsx": "2.1.1",
"cmdk": "1.0.4",
"react-arborist": "3.4.3",
"react-aria-components": "1.16.0",
"react-resizable-panels": "2.1.7",
"react-stately": "3.37.0"
},
"peerDependencies": {
"react": "^19.1.2",
"react-dom": "^19.1.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-proposal-export-default-from": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@chromatic-com/storybook": "3.2.4",
"@eslint/js": "9.17.0",
"@storybook/addon-a11y": "8.5.2",
"@storybook/addon-essentials": "8.5.2",
"@storybook/addon-interactions": "8.5.2",
"@storybook/addon-onboarding": "8.5.2",
"@storybook/blocks": "8.5.2",
"@storybook/react": "8.5.2",
"@storybook/react-vite": "8.5.2",
"@storybook/test": "8.5.2",
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-prettier": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "2.1.8",
"babel-loader": "9.2.1",
"css-loader": "7.1.2",
"eslint": "9.17.0",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.16",
"eslint-plugin-storybook": "0.11.2",
"glob": "11.0.0",
"globals": "15.14.0",
"jsdom": "25.0.1",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-hook-form": "7.54.2",
"remark-gfm": "4.0.0",
"sass": "1.83.1",
"sass-loader": "16.0.4",
"shx": "0.4.0",
"storybook": "8.5.2",
"style-loader": "4.0.0",
"tsx": "4.21.0",
"typescript": "5.6.2",
"typescript-eslint": "8.18.2",
"use-resize-observer": "9.1.0",
"vite": "6.0.5",
"vite-plugin-dts": "4.5.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8",
"vitest-fetch-mock": "0.4.3",
"yup": "1.6.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}