-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "geochart",
"version": "0.1.0",
"description": "A demo app that uses the GeoView APIs",
"main": "src/index.tsx",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Canadian-Geospatial-Platform/geochart"
},
"scripts": {
"serve": "webpack serve --progress --color --config webpack.dev.js",
"build": "webpack --progress --color --config webpack.prod.js",
"deploy": "gh-pages -d dist",
"lint": "eslint src/**/*.{ts,tsx,js}"
},
"peerDependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"chart.js": "^4.4.9",
"chartjs-adapter-luxon": "^1.3.1",
"chartjs-adapter-moment": "^1.0.1",
"i18next": "^25.5.3",
"luxon": "^3.7.2",
"moment": "^2.29.4",
"react-chartjs-2": "^5.3.0",
"react-i18next": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@types/luxon": "^3.7.1",
"@types/react": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.2.0",
"file-loader": "^6.2.0",
"geoview-core-types": "github:Canadian-Geospatial-Platform/GeoView#types",
"gh-pages": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"path": "^0.12.7",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.2.6",
"typescript": "^5.6.3",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.102.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}