-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 3.51 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": "@frontapp/ui-kit",
"version": "0.7.15",
"repository": "[email protected]:frontapp/front-ui-kit.git",
"homepage": "http://frontapp.github.io/front-ui-kit",
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"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": "build-storybook --docs",
"lint": "eslint --ext .jsx,.ts,.tsx,.js . .storybook",
"fix": "prettier --write . .storybook",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006 --docs --no-manager-cache",
"test": "jest"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@popperjs/core": "^2.11.8",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"polished": "^4.3.1",
"popper-max-size-modifier": "^0.2.0",
"react-is": "^18.3.1",
"react-popper": "^2.3.0",
"react-spring": "^9.7.5",
"react-use-measure": "^2.1.1",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^1.0.9"
},
"peerDependencies": {
"react": ">= 18 < 19",
"react-dom": ">= 18 < 19",
"styled-components": ">= 5"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.8",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.8",
"@storybook/builder-webpack5": "^6.5.8",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.12",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.182",
"@types/luxon": "^3.4.2",
"@types/mdx": "^2.0.2",
"@types/react-dom": "^18.0.5",
"@types/react-is": "^18.3.0",
"@types/react-window": "^1.8.8",
"@types/react-window-infinite-loader": "^1.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.28.0",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"chromatic": "^6.5.6",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-styled-components": "^7.0.8",
"prettier": "^3.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"styled-components": "^5.3.5",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"typescript-styled-plugin": "^0.18.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}