-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 824 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "purescript-nix-example",
"version": "1.0.0",
"scripts": {
"bootstrap-nix": "yarn && spago init && spago install halogen && yarn2nix > yarn.nix && spago2nix generate",
"full-clean": "rm -rf node_modules output .spago dist/* *.lock spago-packages.nix yarn.nix .spago2nix .cache spago.dhall packages.dhall",
"clean": "rm -rf output .spago dist/* node_modules output .cache .spago2nix",
"watch": "spago bundle-app --watch --main Example.Main --to dist/app.js",
"dev": "yarn parcel assets/*.html",
"bundle": "spago bundle-app --main Example.Main --to dist/app.js && parcel build assets/*.html",
"serve": "yarn bundle && http-server dist",
"test": "spago test"
},
"devDependencies": {
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"http-server": "^0.12.0"
}
}