forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.33 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
110
111
112
113
114
{
"name": "airbyte-webapp",
"version": "0.34.3-alpha",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"storybook": "start-storybook -p 9009 -s public --quiet",
"lint": "eslint --ext js,ts,tsx src"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@fullstory/browser": "^1.4.9",
"@rest-hooks/legacy": "^2.0.5",
"@sentry/react": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"dayjs": "^1.8.35",
"firebase": "^9.0.1",
"flat": "^5.0.2",
"formik": "2.1.5",
"lodash": "^4.17.21",
"query-string": "^6.13.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dropzone": "^11.2.4",
"react-helmet": "6.1.0",
"react-intl": "^3.12.0",
"react-lazylog": "^4.5.3",
"react-markdown": "^7.0.1",
"react-pose": "^4.0.10",
"react-query": "^3.19.1",
"react-router-dom": "6.1.1",
"react-select": "^4.3.1",
"react-table": "^7.5.0",
"react-use": "^15.3.8",
"react-use-intercom": "^1.4.0",
"react-widgets": "^4.6.1",
"recharts": "^2.1.3",
"remark-gfm": "^3.0.0",
"rest-hooks": "^5.0.20",
"sanitize-html": "^2.3.3",
"styled-components": "^5.1.1",
"typesafe-actions": "^5.1.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@rest-hooks/test": "^6.2.0",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.2",
"@storybook/theming": "^6.3.8",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/flat": "^5.0.1",
"@types/jest": "^24.0.0",
"@types/json-schema": "^7.0.6",
"@types/lodash": "^4.14.178",
"@types/node": "^12.0.0",
"@types/query-string": "^6.3.0",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@types/react-helmet": "6.1.0",
"@types/react-lazylog": "^4.5.0",
"@types/react-select": "^4.0.16",
"@types/react-table": "^7.0.12",
"@types/react-widgets": "4.4.4",
"@types/sanitize-html": "^1.27.0",
"@types/styled-components": "5.1.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.2.1",
"react-scripts": "4.0.2",
"react-select-event": "^5.3.0",
"storybook-addon-styled-component-theme": "^2.0.0",
"tar": "^6.1.11",
"tmpl": "^1.0.5",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}