-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.48 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.48 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@frontapp/ui-kit",
"version": "0.22.2",
"repository": "git@github.com:frontapp/front-ui-kit.git",
"homepage": "http://frontapp.github.io/front-ui-kit",
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=18",
"npm": "please-use-yarn-instead"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": "./dist/index.js",
"scripts": {
"build": "yarn build:dev",
"build:watch": "yarn build:dev --watch",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"build-storybook": "storybook build",
"lint": "eslint --ext .jsx,.ts,.tsx,.js . .storybook",
"fix": "prettier --write . .storybook",
"start": "yarn storybook",
"storybook": "storybook dev -p 6006",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@popperjs/core": "^2.11.8",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"polished": "^4.3.1",
"popper-max-size-modifier": "^0.2.0",
"react-is": "^19.2.0",
"react-popper": "^2.3.0",
"react-spring": "^9.7.5",
"react-use-measure": "^2.1.7",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^2.0.0"
},
"peerDependencies": {
"react": ">= 19",
"react-dom": ">= 19",
"styled-components": ">= 5"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/manager": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-webpack5": "8.6.14",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.7.1",
"@types/mdx": "^2.0.10",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-is": "^19.2.0",
"@types/react-window": "^1.8.8",
"@types/react-window-infinite-loader": "^1.0.9",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"prettier": "^3.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.6.14",
"styled-components": "^6.1.8",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"typescript-styled-plugin": "^0.18.2",
"webpack": "5.94.0",
"webpack-cli": "^5.1.4"
}
}