-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.72 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
{
"name": "hkube-dashboard-cra",
"description": "Hkube dashboard v2",
"author": "Dennis Vash <dennisvash@hey.com>",
"license": "MIT",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hkube/consts": "^1.0.24",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"ansi-to-react": "^6.0.7",
"beautiful-react-hooks": "^0.27.2",
"file-saver": "^2.0.2",
"flow-bin": "^0.129.0",
"framer-motion": "^2.1.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"lodash.throttle": "^4.1.1",
"moment": "^2.27.0",
"object.fromentries": "^2.0.2",
"pretty-ms": "^7.0.0",
"react": "^16.13.1",
"react-circle": "^1.1.1",
"react-color-slim": "^2.18.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-moment": "^0.9.7",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"reusable": "^1.0.1",
"socket.io-client": "^2.3.0",
"typeface-rajdhani": "^0.0.72",
"typeface-roboto": "^0.0.75",
"use-resize-observer": "^6.1.0",
"vis-network-react": "1.2.3"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"flow": "flow",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"pre-push": ""
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,md}": [
"eslint --cache --fix",
"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"
]
},
"devDependencies": {
"@craco/craco": "^5.6.4",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^5.3.19",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"styled-components": "^5.1.1",
"styled-tools": "^1.7.2",
"twin.macro": "^1.5.1"
}
}