-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
121 lines (121 loc) · 3.54 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
119
120
121
{
"name": "@xh/hoist",
"version": "71.0.0-SNAPSHOT",
"description": "Hoist add-on for building and deploying React Applications.",
"repository": "github:xh/hoist-react",
"homepage": "https://xh.io",
"bugs": "https://github.com/xh/hoist-react/issues",
"author": "Extremely Heavy Industries, Inc.",
"license": "Apache-2.0",
"scripts": {
"lint": "yarn lint:all",
"lint:all": "yarn lint:ts && yarn lint:js && yarn lint:styles",
"lint:js": "eslint --ext .js,.jsx .",
"lint:ts": "eslint --ext .ts,.tsx .",
"tsc": "./node_modules/typescript/bin/tsc",
"lint:styles": "stylelint \"**/*.s?(a|c)ss\"",
"prepare": "husky"
},
"sideEffects": [
"./static/polyfills.js"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.s?(a|c)ss": [
"prettier --write",
"stylelint"
]
},
"dependencies": {
"@auth0/auth0-spa-js": "~2.1.3",
"@azure/msal-browser": "~3.27.0",
"@blueprintjs/core": "^5.10.5",
"@blueprintjs/datetime": "^5.3.7",
"@blueprintjs/datetime2": "^2.3.7",
"@fortawesome/fontawesome-pro": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/pro-light-svg-icons": "^6.6.0",
"@fortawesome/pro-regular-svg-icons": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.6.0",
"@fortawesome/pro-thin-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@onsenui/fastclick": "~1.1.1",
"@popperjs/core": "~2.11.0",
"@seznam/compose-react-refs": "~1.0.5",
"classnames": "~2.5.1",
"clipboard-copy": "~4.0.1",
"codemirror": "~5.65.0",
"core-js": "^3.0",
"debounce-promise": "~3.1.0",
"dompurify": "~3.1.1",
"downloadjs": "~1.4.7",
"fast-deep-equal": "~3.1.1",
"filesize": "~6.4.0",
"golden-layout": "~1.5.9",
"http-status-codes": "~2.3.0",
"inter-ui": "~3.19.3",
"jwt-decode": "~4.0.0",
"lodash": "~4.17.21",
"lodash-inflection": "~1.5.0",
"mobx": "~6.13.2",
"mobx-react-lite": "~4.0.7",
"moment": "~2.30.1",
"numbro": "~2.5.0",
"onsenui": "~2.12.8",
"qs": "~6.13.0",
"react-beautiful-dnd": "~13.1.0",
"react-dates": "~21.8.0",
"react-dropzone": "~10.2.2",
"react-grid-layout": "1.4.3",
"react-markdown": "~9.0.1",
"react-onsenui": "~1.13.2",
"react-popper": "~2.3.0",
"react-select": "~4.3.1",
"react-transition-group": "~4.4.2",
"react-windowed-select": "~3.1.2",
"regenerator-runtime": "~0.13.11",
"remark-breaks": "~4.0.0",
"remark-gfm": "~4.0.0",
"resize-observer-polyfill": "~1.5.1",
"router5": "~7.0.2",
"router5-plugin-browser": "~7.0.2",
"semver": "~7.6.0",
"short-unique-id": "~5.2.0",
"store2": "~2.14.3",
"ua-parser-js": "~1.0.2"
},
"peerDependencies": {
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"devDependencies": {
"@ag-grid-community/client-side-row-model": "31.x",
"@ag-grid-community/core": "31.x",
"@ag-grid-community/react": "31.x",
"@types/react": "18.x",
"@types/react-dom": "18.x",
"@xh/hoist-dev-utils": "9.x",
"csstype": "3.x",
"eslint": "8.x",
"eslint-config-prettier": "9.x",
"eslint-plugin-tsdoc": "0.x",
"husky": "9.x",
"lint-staged": "15.x",
"postcss": "8.x",
"prettier": "3.x",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"stylelint": "16.x",
"stylelint-config-standard-scss": "13.x",
"type-fest": "4.x",
"typescript": "~5.1.6"
},
"resolutions": {
"core-js": "3.x",
"@types/react": "18.x",
"@types/react-dom": "18.x"
}
}