This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.68 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.68 KB
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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "react-env && craco start",
"prestart": "react-env --dest ./build",
"start": "serve -s build",
"build": "NODE_ENV=production craco build",
"test": "craco test",
"lint": "./node_modules/.bin/eslint --cache --format codeframe --ext jsx,js src",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"i18n:validate": "node ./src/i18n/tools/validation",
"i18n:cleanup": "node ./src/i18n/tools/cleanUpUnusedKeys",
"i18n:alphabetize": "node ./src/i18n/tools/alphabetizeKeys",
"i18n:export": "node ./src/i18n/tools/exportTransToCSV",
"analyze": "ANALYZE_BUILD=true yarn build",
"prepare": "cd ../../ && husky install services/frontend/.husky"
},
"dependencies": {
"@ant-design/icons": "4.6.4",
"@beam-australia/react-env": "3.1.1",
"@craco/craco": "6.2.0",
"@date-io/dayjs": "^1.3.13",
"@material-ui/core": "4.12.3",
"@material-ui/pickers": "3.3.10",
"@material-ui/styles": "4.11.4",
"@react-keycloak/web": "3.4.0",
"@reduxjs/toolkit": "1.6.1",
"antd": "4.17.0",
"axios": "1.3.4",
"babel-plugin-import": "1.13.3",
"babel-plugin-lodash": "3.3.4",
"chart.js": "3.5.1",
"craco-less": "1.20.0",
"dayjs": "^1.10.4",
"keycloak-js": "15.0.2",
"lodash": "4.17.21",
"lodash-webpack-plugin": "0.11.6",
"prop-types": "15.7.2",
"query-string": "7.0.1",
"react": "17.0.2",
"react-app-polyfill": "2.0.0",
"react-chartjs-2": "3.0.4",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-highlight-words": "0.17.0",
"react-intl": "5.20.10",
"react-redux": "7.2.5",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"react-select": "^5.0.0",
"redux": "4.1.1",
"redux-persist": "6.0.0",
"serve": "12.0.0",
"validator": "13.7.0"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^7.0.2",
"json2csv": "5.0.6",
"prettier": "2.4.0",
"webpack-bundle-analyzer": "4.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"IE 11"
]
}
}