-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.61 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
{
"name": "treege-consumer",
"description": "A React library to consume easily form generated from Tree",
"version": "2.6.3",
"type": "module",
"types": "dist/main.d.ts",
"main": "dist/main.umd.cjs",
"module": "dist/main.js",
"files": [
"dist"
],
"repository": "git@github.com:Tracktor/treege-consumer.git",
"author": "Mickaël Austoni",
"bugs": {
"url": "https://github.com/Tracktor/treege-consumer/issues"
},
"homepage": "https://github.com/Tracktor/treege-consumer#readme",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"lint": "eslint . --max-warnings=0 && tsc --noEmit",
"lint:fix": "eslint --fix .",
"prepare": "yarn run build && husky install",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"example": "vite"
},
"dependencies": {
"@mui/x-date-pickers-pro": "^7.0.0 || ^8.0.0",
"@mui/x-license": "^7.0.0 || ^8.0.0",
"@tanstack/react-query": "^4.0.0 || ^5.0.0",
"@tracktor/design-system": "^4.0.0",
"@tracktor/react-utils": "^1.23.0",
"autosuggest-highlight": "^3.3.4",
"dayjs": "^1.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@tracktor/types-treege": "^0.3.14",
"@types/autosuggest-highlight": "^3.2.0",
"@types/google.maps": "^3.54.3",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"commit-and-tag-version": "^12.5.1",
"eslint-config-react-tracktor": "^1.10.0",
"husky": "^8.0.3",
"jsdom": "^26.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^1.6.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"commit-and-tag-version": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [skip ci]",
"tagPrefix": ""
},
"peerDependencies": {
"@mui/x-date-pickers-pro": "*",
"@mui/x-license": "*",
"@tanstack/react-query": ">=5",
"@tracktor/design-system": ">=4",
"@tracktor/react-utils": ">=1.23.0",
"dayjs": ">=1",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"keywords": [
"react",
"treege",
"treege consumer"
]
}