-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.3 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-starter-vitejs",
"description": "This repository is a starter project that use React Toolkit Axa and Vite.",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build && npm run copy",
"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",
"copy": "cd ./scripts && npm i && npm run copy"
},
"dependencies": {
"@axa-fr/react-oidc": "7.22.18",
"@axa-fr/react-toolkit-all": "2.3.1",
"@axa-fr/react-toolkit-core": "2.3.1",
"@tanstack/react-query": "5.51.3",
"@tanstack/react-query-devtools": "5.51.3",
"@uiw/react-textarea-code-editor": "3.0.2",
"axe-core": "4.9.1",
"cross-fetch": "4.0.0",
"downloadjs": "1.4.7",
"github-markdown-css": "5.6.1",
"lodash": "4.17.21",
"prism-react-renderer": "2.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"react-hook-form": "7.52.1",
"react-live": "4.1.7",
"react-markdown": "9.0.1",
"react-router-dom": "6.25.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.7.0",
"@testing-library/dom": "10.3.2",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/downloadjs": "1.4.6",
"@types/jest-axe": "3.5.9",
"@types/lodash": "4.17.7",
"@types/node": "20.14.11",
"@types/react": "18.2.64",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.4",
"eslint-plugin-react-hooks": "4.6.2",
"globals": "15.8.0",
"husky": "9.0.11",
"jest-axe": "9.0.0",
"jest-cucumber": "4.4.0",
"jsdom": "24.1.0",
"lint-staged": "15.2.7",
"msw": "2.3.1",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "5.12.0",
"sass": "1.77.8",
"serve": "14.2.3",
"typescript": "5.5.3",
"vite": "5.3.4",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.3",
"vitest-sonar-reporter": "2.0.0",
"whatwg-fetch": "3.6.20"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}