-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
83 lines (83 loc) · 2.38 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
{
"name": "squadcalc",
"version": "37.1.1",
"description": "A Complete Mortar Calculator and Map Lane Finder for Squad",
"author": "Maxime 'sharkman' Boussard",
"license": "MIT",
"type": "module",
"keywords": [
"squad",
"squadcalc",
"mortar",
"calculator",
"lane",
"map"
],
"repository": {
"type": "git",
"url": "git:/github.com/sh4rkman/SquadCalc"
},
"homepage": "https://squadcalc.app/",
"bugs": {
"url": "https://github.com/sh4rkman/SquadCalc/issues"
},
"private": false,
"jshintConfig": {
"esversion": 11
},
"scripts": {
"start": "webpack serve -c ./config/webpack.config.js",
"build": "webpack -c ./config/webpack.config.js",
"lint": "stylelint -c ./config/.stylelintrc.json ./src/**/*.scss && htmlhint --config ./config/.htmlhintrc.json --nocolor ./src/ && jshint ./src/ && eslint -c ./config/.eslintrc.js ./src/",
"mapinfo": "node src/js/tests/mapdata.js info",
"weaponInfo": "node src/js/tests/calcMortarTech.js info"
},
"devDependencies": {
"@types/leaflet": "^1.9.15",
"@types/node": "^22.10.3",
"animate.css": "^4.1.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.17.0",
"fs-extra": "^11.2.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"htmlhint": "^1.1.4",
"i18next": "^24.2.0",
"i18next-http-backend": "^3.0.1",
"jquery": "^3.7.1",
"jshint": "^2.13.6",
"leader-line-new": "^1.1.9",
"leaflet": "^1.9.4",
"leaflet-edgebuffer": "^1.0.6",
"leaflet-loader": "^0.0.3",
"leaflet-polylinedecorator": "^1.6.0",
"leaflet-spin": "^1.1.2",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"path": "^0.12.7",
"postcss": ">=8.4.49",
"purecss": "^3.0.0",
"robotstxt-webpack-plugin": "^8.0.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"select2": "^4.1.0-rc.0",
"sharp": "^0.33.5",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"tippy.js": "^6.3.7",
"uuid": "^11.0.5",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^7.3.0"
},
"overrides": {
"phin": "^3.7.1"
}
}