-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.91 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
93
94
95
{
"name": "@wireapp/react-ui-kit",
"private": true,
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/wireapp/wire-webapp",
"directory": "libraries/react-ui-kit"
},
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"homepage": "https://wire-react-ui-kit.netlify.app/",
"dependencies": {
"@internationalized/date": "3.12.2",
"@radix-ui/react-accordion": "1.2.14",
"@radix-ui/react-dropdown-menu": "2.1.18",
"@sindresorhus/is": "4.6.0",
"@types/color": "3.0.7",
"color": "4.2.3",
"emotion-normalize": "11.0.1",
"react-aria-components": "1.19.0",
"react-select": "5.10.2",
"react-transition-group": "4.4.5"
},
"devDependencies": {
"@babel/cli": "7.29.7",
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@chromatic-com/storybook": "^3.2.4",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/jest": "11.14.2",
"@emotion/react": "11.14.0",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-onboarding": "^8.5.2",
"@storybook/addon-themes": "^8.5.2",
"@storybook/addon-webpack5-compiler-swc": "^4.0.1",
"@storybook/blocks": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/react-webpack5": "^8.5.2",
"@storybook/test": "^8.5.2",
"@swc/core": "1.15.43",
"@swc/jest": "0.2.39",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "24.13.1",
"@types/react": "18.3.31",
"@types/react-dom": "18.3.7",
"@types/react-test-renderer": "18.3.1",
"@types/webpack-env": "1.18.8",
"babel-jest": "30.4.1",
"babel-loader": "10.1.1",
"jest": "30.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-test-renderer": "18.3.1",
"rimraf": "6.1.3",
"storybook": "^8.5.2",
"typescript": "6.0.3",
"webpack": "5.108.1"
},
"peerDependencies": {
"@emotion/react": "^11",
"@types/react": "^18",
"react": "^18",
"react-dom": "^18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"scripts": {
"build": "nx run react-ui-kit-lib:build",
"build:storybook": "nx run react-ui-kit-lib:build-storybook",
"clean": "nx run react-ui-kit-lib:clean",
"dist": "nx run react-ui-kit-lib:dist",
"start": "nx run react-ui-kit-lib:storybook",
"test": "nx run react-ui-kit-lib:test",
"test:coverage": "nx run react-ui-kit-lib:test:coverage",
"test:watch": "nx run react-ui-kit-lib:test --watch",
"test:update": "nx run react-ui-kit-lib:test --updateSnapshot",
"lint": "nx lint react-ui-kit-lib",
"lint:fix": "nx lint react-ui-kit-lib --fix"
},
"version": "9.77.0"
}