This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.29 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
115
116
117
118
{
"name": "flow",
"version": "0.1.0",
"main": "index.tsx",
"private": true,
"scripts": {
"start": "react-scripts start -o",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn eslint . --fix && yarn prettier . --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 edge version"
]
},
"notes": {
"dependenciesDocumentation": "https://dev.flowfin.tech/docs-front/dependencies.html"
},
"dependencies": {
"@formatjs/intl-relativetimeformat": "^8.0.4",
"@hookform/resolvers": "^1.3.4",
"@manaflair/redux-batch": "1.0.0",
"@material-ui/core": "4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.24",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@material-ui/x-grid": "^4.0.0-alpha.26",
"@reduxjs/toolkit": "1.5.0",
"axios": "0.21.2",
"clipboard-copy": "4.0.1",
"clsx": "1.1.1",
"eslint-config-react-app": "^6.0.0",
"highcharts": "^9.1.2",
"highcharts-react-official": "^3.0.0",
"object-path": "0.11.8",
"perfect-scrollbar": "1.5.0",
"prop-types": "15.7.2",
"query-string": "^6.14.0",
"react": "17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.2",
"react-inlinesvg": "2.2.2",
"react-intl": "5.12.3",
"react-is": "17.0.1",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.1",
"react-select": "4.1.0",
"react-virtualized": "^9.22.2",
"react-virtualized-auto-sizer": "^1.0.4",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"sass": "^1.32.8",
"serve-static": "^1.16.0",
"slate": "^0.63.0",
"slate-react": "^0.65.2",
"styled-components": "^5.2.1",
"uuid": "^8.3.2",
"yup": "0.32.9"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.0",
"@types/object-path": "^0.11.0",
"@types/react": "^17.0.2",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.1",
"@types/react-is": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.6",
"@types/react-virtualized": "^9.21.11",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typedoc": "^0.20.26",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn eslint . --fix",
"yarn prettier . --write",
"git add ."
]
}
}