-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 940 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 940 Bytes
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
{
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"@types/materialize-css": "^1.0.11",
"@types/pako": "^2.0.3",
"bower": "^1.8.14",
"esbuild": "^0.18.12",
"glob": "^11.0.1",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"scripts": {
"bundle": "esbuild ./dist/js/index.js style.css --bundle --minify --platform=browser --outdir=./dist --format=esm --allow-overwrite --splitting --entry-names=[ext]/[name]",
"bundledev": "node esbuild.config.js --dev --watch",
"build": "rimraf dist && npx tsc && npm run bundle",
"dev": "rimraf dist && npm run bundledev"
},
"name": "mopsflweather-frontend",
"version": "1.0.0",
"description": "mopsflweather app frontend",
"main": "index.js",
"author": "mopsfl",
"license": "ISC",
"dependencies": {
"chart.js": "^4.4.8",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"pako": "^2.1.0"
}
}