-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.48 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
{
"name": "demo-app",
"private": true,
"version": "1.0.1",
"description": "Demo app project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"start": "webpack serve",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:css": "stylelint '**/*.{css,scss}'",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@ant-design/icons": "5.3.0",
"@svgr/webpack": "8.1.0",
"@tanstack/react-query": "5.24.1",
"@turf/turf": "6.5.0",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.19",
"@types/react-query": "1.2.9",
"@types/sql.js": "1.4.9",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"@webpack-cli/generators": "3.0.7",
"@yandex/ymaps3-clusterer": "0.0.7",
"@yandex/ymaps3-types": "^0.0.21",
"ajv": "8.12.0",
"antd": "5.17.0",
"autoprefixer": "10.4.17",
"classnames": "2.5.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "6.10.0",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-simple-import-sort": "12.0.0",
"html-webpack-plugin": "5.6.0",
"html-webpack-tags-plugin": "3.0.2",
"i18next": "23.10.0",
"mini-css-extract-plugin": "2.8.0",
"postcss": "8.4.35",
"postcss-loader": "8.1.0",
"postcss-media-minmax": "5.0.0",
"prettier": "3.2.5",
"raw-loader": "4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "14.0.8",
"react-query": "4.0.0",
"react-router-dom": "6.22.1",
"rtree-sql.js": "1.7.0",
"style-loader": "3.3.4",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"typescript-plugin-css-modules": "5.1.0",
"urlpattern-polyfill": "10.0.0",
"use-debounce": "10.0.0",
"webpack": "5.90.3",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.2",
"workbox-webpack-plugin": "7.0.0"
},
"dependencies": {
"@types/lodash-es": "4.17.12",
"lodash-es": "4.17.21"
}
}