-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 866 Bytes
/
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
{
"name": "elm-esbuild-template",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"postinstall": "elm-tooling install",
"start": "run-pty % elm-watch hot % npm run esbuild -- --serve=9000 --servedir=public --watch",
"build": "elm-watch make --optimize && npm run esbuild -- --minify --define:window.PRODUCTION=true",
"esbuild": "esbuild app.js --bundle --outdir=public/build --public-path=/build/",
"lint": "elm-review",
"test": "elm-test-rs"
},
"devDependencies": {
"elm-review": "^2.12.0",
"elm-tooling": "^1.15.1",
"elm-watch": "^1.1.3",
"esbuild": "^0.24.0",
"run-pty": "^5.0.0",
"uglify-js": "^3.19.3"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}