-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.29 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
{
"name": "spb-histmap",
"version": "1.0.0",
"description": "Интерактивная историческая карта Ленинграда в ВОВ",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.config.js --mode development",
"build": "webpack --config webpack.config.js --mode production",
"lint": "eslint --max-warnings=0 src",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{js,ts,tsx,md,json,yml,geojson}\"",
"prettier:fix": "prettier --ignore-path .gitignore --write --list-different \"**/*.{js,ts,tsx,md,json,yml,geojson}\"",
"test": "npm run lint && npm run prettier:check",
"generate:spb-houses": "ts-node scripts/get-houses-geodata.ts",
"generate:fake-data": "npm run generate:spb-houses && ts-node scripts/generate-fake-data.ts"
},
"keywords": [],
"author": "Stepan Anokhin",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.5.1",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.62",
"@mui/material": "^5.2.5",
"@mui/system": "^5.2.6",
"date-fns": "^2.27.0",
"fast-xml-parser": "^4.0.1",
"immer": "^9.0.12",
"json-loader": "^0.5.7",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.2",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"typescript": "^4.5.4",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.8",
"@types/leaflet": "^1.7.6",
"@types/prettier": "^2.4.2",
"@types/react-dom": "^17.0.11",
"@types/react-leaflet-markercluster": "^3.0.0",
"@types/webpack-env": "^1.16.3",
"@types/yauzl": "^2.9.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"axios": "^0.24.0",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.27.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.5.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}