-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.15 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
{
"name": "geoview-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}"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.6",
"@mui/material": "^5.14.6",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"chart.js": "^4.4.0",
"chartjs-adapter-moment": "^1.0.1",
"i18next": "^23.7.11",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"geoview-core-types": "github:Canadian-Geospatial-Platform/GeoView#types",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"prettier": "^2.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}