-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.92 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
{
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/register": "^7.23.7",
"@symfony/webpack-encore": "4.5.0",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "12.1.0",
"autoprefixer": "^10.4.19",
"copy-webpack-plugin": "^11.0.0",
"dart-sass": "^1.25.0",
"dotenv-webpack": "^8.1.0",
"es-check": "^7.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"puppeteer": "19",
"puppeteer-core": "19",
"sass-lint-auto-fix": "^0.21.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"yaml-loader": "^0.8.1"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"watch-all": "npm-run-all --parallel watch watch:sass",
"prebuild": "npm run sitemap",
"build": "encore production",
"watch:sass": "dart-sass assets/css/ioda/sass/main.scss assets/css/style.css --watch",
"compile:sass": "dart-sass assets/css/ioda/sass/main.scss assets/css/style.comp.css",
"prefix:sass": "postcss --use autoprefixer -b \"last 10 versions\" assets/css/style.comp.css -o assets/css/style.prefix.css",
"compress:css": "dart-sass assets/css/style.prefix.css assets/css/style.css --style=compressed",
"build:css": "npm-run-all compile:sass prefix:sass compress:css",
"test": "jest",
"lint": "sass-lint -v",
"test:es-check": "es-check es5 'assets/js/Ioda/*.js'",
"sitemap": "./node_modules/@babel/node/bin/babel-node.js assets/js/Ioda/constants/sitemap/Generator.js"
},
"dependencies": {
"@2fd/ant-design-icons": "^2.6.0",
"@ant-design/icons": "^5.3.7",
"@idotj/mastodon-embed-timeline": "^4.4.2",
"@reduxjs/toolkit": "^2.2.5",
"antd": "^5.7.0",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"core-js": "^3.37.1",
"d3": "3",
"d3-shape": "^2.1.0",
"dayjs": "^1.11.7",
"fabric": "^5.3.0",
"fabric-history": "^1.7.0",
"ga-4-react": "^0.1.281",
"highcharts": "^11.4.3",
"highcharts-react-official": "^3.2.1",
"horizon-timeseries-chart": "^1.10.1",
"i18n-react": "^0.7.0",
"leaflet": "^0.7.3",
"lodash": "^4.17.15",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"react-leaflet": "^2.7.0",
"react-preload-image": "^1.0.7",
"react-redux": "^7.1.3",
"react-router-dom": "^6.26.0",
"react-router-sitemap": "^1.2.0",
"react-share": "^5.1.0",
"react-style-tag": "^3.0.1",
"react-twitter-embed": "^4.0.4",
"topojson": "1.6.18",
"uuid": "^9.0.1"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
"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",
"last 1 edge version",
"ie 11"
]
}
}