This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 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
104
105
106
107
108
109
{
"name": "@ecmwf-projects/cads-ui-library",
"version": "8.4.2",
"description": "Common UI kit library",
"repository": {
"type": "git",
"url": "git@github.com:ecmwf-projects/cads-ui-library.git"
},
"bugs": {
"url": "https://github.com/ecmwf-projects/cads-ui-library/issues"
},
"homepage": "https://github.com/ecmwf-projects/cads-ui-library#README",
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:components": "cypress open",
"test:components:ci": "cypress run --component",
"test:components:coverage": "nyc report",
"format": "prettier --write .",
"lint:format": "prettier --check .",
"lint": "eslint src/**",
"lint:staged": "lint-staged",
"preversion": "npm run build",
"prepare": "husky install",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testing-library/cypress": "^9.0.0",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.15.12",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.16",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^3.1.0",
"cypress": "^12.14.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"react-hook-form": "^7.43.9",
"rimraf": "^5.0.0",
"styled-components": "^5.3.9",
"ts-jest": "^29.1.0",
"type-fest": "^3.8.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-istanbul": "^4.1.0"
},
"dependencies": {
"@internationalized/date": "^3.5.0",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-radio-group": "^1.1.2",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@react-aria/datepicker": "^3.8.1",
"@react-aria/i18n": "^3.8.4",
"@react-stately/datepicker": "^3.8.0",
"core-js": "^3.30.1",
"markdown-to-jsx": "^7.3.2",
"react": "^18.2.0",
"react-aria-components": "^1.0.0-beta.0",
"react-dom": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"styled-system": "^5.1.5",
"usehooks-ts": "^2.9.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"resolutions": {
"json5": "2.2.3",
"yaml": "2.2.2"
}
}