-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.42 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.42 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
{
"name": "@wireapp/react-ui-kit",
"license": "GPL-3.0",
"repository": "https://github.com/wireapp/wire-web-packages/tree/main/packages/react-ui-kit",
"files": [
"lib"
],
"main": "lib/index",
"homepage": "https://wire-react-ui-kit.netlify.app/",
"dependencies": {
"@radix-ui/react-accordion": "1.2.11",
"@radix-ui/react-dropdown-menu": "2.1.14",
"@types/color": "3.0.6",
"color": "4.2.3",
"emotion-normalize": "11.0.1",
"react-select": "5.10.2",
"react-transition-group": "4.4.5"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.28.6",
"@babel/preset-env": "7.28.6",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@chromatic-com/storybook": "^3.2.4",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/jest": "11.14.2",
"@emotion/react": "^11.10.4",
"@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.3.10",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "^29.2.0",
"@types/node": "^22.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/webpack-env": "1.18.8",
"babel-jest": "30.2.0",
"babel-loader": "10.0.0",
"jest": "^29.2.1",
"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": "^5.0.4",
"webpack": "^5.74.0"
},
"peerDependencies": {
"@emotion/react": "^11",
"@types/react": "^18",
"react": "^18",
"react-dom": "^18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"scripts": {
"build": "yarn clean && tsc",
"build:storybook": "storybook build",
"clean": "rimraf lib",
"dist": "yarn build",
"start": "storybook dev -p 6006",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot"
},
"version": "9.74.0"
}