-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.09 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
{
"name": "sparte",
"version": "9.0.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --mode production",
"lint": "eslint --fix ./frontend/scripts/*.js ./frontend/scripts/**/*.js",
"tsc": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"export:pdf": "node scripts/export-rapport-pdf.js"
},
"devDependencies": {
"@babel/core": "^7.24.1",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.24.1",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bootstrap": "^5.2.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@types/react-redux": "^7.1.33",
"@types/styled-components": "^5.1.34",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-webpack-plugin": "^4.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.7.2",
"puppeteer": "^24.28.0",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.2",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-bundle-tracker": "^3.1.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.16.10",
"@gouvfr/dsfr": "^1.8.5",
"@reduxjs/toolkit": "^2.2.1",
"@remixicon/react": "^4.6.0",
"@svgr/webpack": "^8.1.0",
"@tiptap/extension-bold": "^2.10.4",
"@tiptap/extension-bullet-list": "^2.10.4",
"@tiptap/extension-document": "^2.10.4",
"@tiptap/extension-history": "^2.10.4",
"@tiptap/extension-italic": "^2.10.4",
"@tiptap/extension-list-item": "^2.10.4",
"@tiptap/extension-ordered-list": "^2.10.4",
"@tiptap/extension-paragraph": "^2.10.4",
"@tiptap/extension-placeholder": "^2.10.4",
"@tiptap/extension-text": "^2.10.4",
"@tiptap/react": "^2.10.4",
"@turf/turf": "^7.2.0",
"@types/geojson": "^7946.0.16",
"@types/mapbox-gl": "^3.4.1",
"@uidotdev/usehooks": "^2.4.1",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"highcharts": "^11.4.6",
"highcharts-react-official": "^3.2.1",
"htmx.org": "^1.8.4",
"lodash.isequal": "^4.5.0",
"lottie-react": "^2.4.1",
"maplibre-gl": "^5.0.1",
"pmtiles": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.26.0",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.0",
"styled-components": "^6.1.8"
}
}