@axa-fr/design-system-apollo-react 1.0.3-ci.129 → 1.0.3-ci.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +29 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axa-fr/design-system-apollo-react",
|
|
3
|
-
"version": "1.0.3-ci.
|
|
3
|
+
"version": "1.0.3-ci.131",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -24,11 +24,10 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"prebuild": "rimraf dist",
|
|
26
26
|
"build": "tsc -p tsconfig.build.json",
|
|
27
|
-
"dev": "tsc -p tsconfig.build.json --watch",
|
|
28
27
|
"eslint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
29
28
|
"eslint:fix": "eslint src --ext js,jsx,ts,tsx --fix",
|
|
30
|
-
"prettier": "prettier \"src/**/*.!(js|jsx|ts|tsx|svg)\" --check",
|
|
31
|
-
"prettier:fix": "prettier \"src/**/*.!(js|jsx|ts|tsx|svg)\" --write",
|
|
29
|
+
"prettier": "prettier \"src/**/*.!(js|jsx|ts|tsx|svg)\" --check --ignore-unknown",
|
|
30
|
+
"prettier:fix": "prettier \"src/**/*.!(js|jsx|ts|tsx|svg)\" --write --ignore-unknown",
|
|
32
31
|
"check-types": "tsc --noEmit",
|
|
33
32
|
"test": "vitest",
|
|
34
33
|
"test:ui": "vitest --ui",
|
|
@@ -47,9 +46,10 @@
|
|
|
47
46
|
},
|
|
48
47
|
"homepage": "https://github.com/AxaFrance/design-system#readme",
|
|
49
48
|
"peerDependencies": {
|
|
49
|
+
"@axa-fr/design-system-apollo-css": "1.0.3-ci.131",
|
|
50
|
+
"@axa-fr/design-system-look-and-feel-css": "*",
|
|
50
51
|
"@material-symbols/svg-400": ">= 0.19.0",
|
|
51
|
-
"react": ">= 18"
|
|
52
|
-
"@axa-fr/design-system-apollo-css": "1.0.3-ci.129"
|
|
52
|
+
"react": ">= 18"
|
|
53
53
|
},
|
|
54
54
|
"peerDependenciesMeta": {
|
|
55
55
|
"@material-symbols/svg-400": {
|
|
@@ -57,18 +57,37 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@axa-fr/design-system-apollo-css": "*",
|
|
61
|
-
"@axa-fr/design-system-look-and-feel-css": "*",
|
|
62
60
|
"@fontsource/source-sans-pro": "^5.0.8",
|
|
63
61
|
"@tanem/svg-injector": "^10.1.68",
|
|
64
62
|
"classnames": "^2.5.1",
|
|
65
63
|
"dompurify": "^3.1.5"
|
|
66
64
|
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@axa-fr/design-system-apollo-css": "*",
|
|
67
|
+
"@axa-fr/design-system-look-and-feel-css": "*",
|
|
68
|
+
"@axa-fr/eslint-config-design-system": "*",
|
|
69
|
+
"@axa-fr/prettier-config-design-system": "*",
|
|
70
|
+
"@testing-library/dom": "^10.4.0",
|
|
71
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
72
|
+
"@testing-library/react": "^16.2.0",
|
|
73
|
+
"@testing-library/user-event": "^14.6.1",
|
|
74
|
+
"@types/dompurify": "^3.0.5",
|
|
75
|
+
"@types/jest": "^29.5.14",
|
|
76
|
+
"@types/jest-axe": "^3.5.9",
|
|
77
|
+
"@vitest/coverage-v8": "^3.0.7",
|
|
78
|
+
"@vitest/ui": "^3.0.7",
|
|
79
|
+
"copyfiles": "^2.4.1",
|
|
80
|
+
"jest-axe": "^9.0.0",
|
|
81
|
+
"jsdom": "^25.0.1",
|
|
82
|
+
"react": "^19.0.0",
|
|
83
|
+
"rimraf": "^6.0.1",
|
|
84
|
+
"vitest": "^3.0.7"
|
|
85
|
+
},
|
|
67
86
|
"lint-staged": {
|
|
68
87
|
"*.(js|jsx|ts|tsx)": "eslint --fix",
|
|
69
|
-
"*.(ts|tsx)": "tsc-files --noEmit"
|
|
70
|
-
"*.mdx": "prettier --write"
|
|
88
|
+
"*.(ts|tsx)": "tsc-files --noEmit"
|
|
71
89
|
},
|
|
90
|
+
"prettier": "@axa-fr/prettier-config-design-system",
|
|
72
91
|
"volta": {
|
|
73
92
|
"extends": "../../../package.json"
|
|
74
93
|
}
|