-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.12 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "aesirx-bi-app",
"version": "2.8.0",
"license": "GPL-3.0-only",
"author": "AesirX",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": "https://github.com/aesirxio/bi-app",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"aesirx-lib": "*",
"aesirx-sso": "*",
"aesirx-uikit": "*",
"axios": "^1.4.0",
"d3-fetch": "^3.0.1",
"d3-scale": "^4.0.2",
"exceljs": "^4.4.0",
"flag-icons": "^7.2.3",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"moment": "^2.29.4",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^5.2.0",
"react-simple-maps": "^3.0.0",
"react-table": "^7.6.2",
"react-to-print": "^2.14.12",
"react-tooltip": "^5.18.1",
"recharts": "^2.13.0-alpha.4",
"simple-react-validator": "^1.6.0",
"web-vitals": "^3.3.1"
},
"scripts": {
"start": "yarn run build && serve -s build",
"build": "craco build",
"test": "craco test",
"dev": "craco start",
"lint": "eslint --fix \"src/**/\"",
"lint:check": "eslint \"src/**/\"",
"lint:nowarns": "eslint --quiet \"src/**/\"",
"format:check": "prettier --check \"./src/**/*.{js,jsx,ts,tsx}\"",
"format:write": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"",
"build:lib": "NODE_ENV=production tsup",
"dev:lib": "NODE_ENV=development tsup --watch --onSuccess 'yalc push --no-scripts'",
"prepublishOnly": "yarn build:lib"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@craco/craco": "^7.0.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-css-modules": "^5.2.6",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^2.10.0",
"eslint": "^8.40",
"git-revision-webpack-plugin": "^5.0.0",
"prettier": "^2.8.8",
"react-inject-env": "^2.1.0",
"react-scripts": "^5.0.1",
"sass": "^1.62",
"serve": "^14.2.3",
"tsup": "^6.7.0"
},
"files": [
"dist",
"public/assets/images",
"public/assets/data"
],
"resolutions": {
"react": "^18",
"react-dom": "^18",
"tough-cookie": "^4",
"semver": "^7",
"jsdom": "^16",
"nth-check": "^2",
"postcss": "^8",
"json5": "^2",
"d3-color": "^3"
}
}