-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.71 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
{
"name": "react-starter-design-system",
"description": "This repository is a starter project that use Axa Design System",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "tsc && vite build -m production.local && npm run copy && serve -s build -p 5002",
"test": "vitest run",
"test:dev": "vitest",
"cover:local": "vitest run --coverage",
"cover": "vitest run --coverage --silent",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"check": "npm run prettier && npm run lint",
"fix": "npm run prettier:fix && npm run lint:fix",
"prepare": "husky",
"cz": "cz",
"clean": "cd ./scripts && npm i && npm start && cd .. && npx rimraf ./scripts"
},
"dependencies": {
"@axa-fr/react-toolkit-all": "2.3.1",
"@axa-fr/react-toolkit-core": "2.3.1",
"@tanstack/react-query": "5.66.0",
"@tanstack/react-query-devtools": "5.66.0",
"axe-core": "4.10.2",
"cross-fetch": "4.1.0",
"downloadjs": "1.4.7",
"lodash": "4.17.21",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react-router-dom": "7.1.5"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/js": "^9.19.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.6.1",
"@types/downloadjs": "1.4.6",
"@types/jest-axe": "3.5.9",
"@types/lodash": "4.17.15",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "9.1.7",
"jest-axe": "9.0.0",
"jest-cucumber": "4.5.0",
"jsdom": "26.0.0",
"lint-staged": "15.4.3",
"msw": "2.7.0",
"prettier": "3.4.2",
"rollup-plugin-visualizer": "5.14.0",
"sass": "1.84.0",
"serve": "14.2.4",
"typescript": "5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "6.1.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5",
"vitest-sonar-reporter": "2.0.0",
"whatwg-fetch": "3.6.20"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}