-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.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
{
"name": "visu",
"version": "1.9.9",
"description": "Visu Frontend",
"main": "index.jsx",
"scripts": {
"dev": "webpack --mode development --watch --entry ./project/frontend/src/index.jsx --output-path ./project/frontend/static/frontend",
"build": "webpack --mode production --entry ./project/frontend/src/index.jsx --output-path ./project/frontend/static/frontend",
"lint": "eslint ./project/frontend/src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"style-loader": "^3.3.2",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"mapbox-gl-style-switcher": "^1.0.11",
"maplibre-gl": "^2.4.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3"
}
}