-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.79 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
{
"name": "parking-lanes",
"version": "1.0.0",
"description": "Parking lanes viewer from OpenStreetMap",
"main": "index.js",
"scripts": {
"dev": "webpack serve",
"start": "webpack serve",
"build": "cross-env NODE_ENV='production' webpack",
"analyze": "cross-env NODE_ENV='production' cross-env ANALYZE=true webpack",
"deploy": "cross-env NODE_DEBUG=gh-pages gh-pages -d dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts src/*.ts src/test/*.test.ts",
"lint:fix": "eslint src/**/*.ts src/*.ts src/test/*.test.ts --fix",
"prepare": "husky install",
"test": "npx jest src/test/*"
},
"keywords": [],
"author": "Zlant",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.4.0",
"@types/jxon": "^2.0.2",
"@types/leaflet": "^1.9.1",
"@types/leaflet.locatecontrol": "^0.74.1",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-loader": "^9.1.2",
"babel-plugin-root-import": "^6.6.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"eslint-plugin-react-hooks": "^4.6.0",
"font-awesome": "^4.7.0",
"hyperhtml": "^2.34.2",
"jxon": "^2.0.0-beta.5",
"leaflet": "^1.9.3",
"leaflet-hash": "^0.2.1",
"leaflet-polylineoffset": "^1.1.1",
"leaflet-touch-helper": "^2.0.0",
"leaflet.locatecontrol": "^0.79.0",
"normalize.css": "^8.0.1",
"opening_hours": "^3.8.0",
"osm-auth": "^2.5.0",
"osm-parking-tag-updater": "github:osmberlin/osm-tag-updater",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"zustand": "^4.3.8"
}
}