15 lines
392 B
JSON
15 lines
392 B
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"parcel": "1.12.3",
|
|
"purescript": "^0.14.0",
|
|
"spago": "^0.19.1"
|
|
},
|
|
"scripts": {
|
|
"build": "spago build",
|
|
"test": "spago test",
|
|
"serve": "parcel dev/index.html --open",
|
|
"build-prod": "mkdir -p prod && cp dev/index.html prod/ && rm -rf dist && spago bundle-app --to prod/index.js && parcel build prod/index.html"
|
|
}
|
|
}
|