-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 690 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "purescript-halogen-realworld",
"description": "An exemplary real-world application demonstrating PureScript and the Halogen framework",
"author": "Thomas Honeyman",
"license": "MIT",
"scripts": {
"postinstall": "spago install",
"clean": "rm -rf node_modules output .spago dist/*.js *.lock .cache",
"build": "spago build",
"test": "spago test",
"serve": "spago build && esbuild --bundle index.js --outfile=dist/index.js --servedir=dist",
"bundle": "spago build --output output-es && purs-backend-es bundle-app --main Main --minify --no-build --to dist/index.js"
},
"dependencies": {
"decimal.js": "^10.3.1",
"marked": "^4.0.15"
}
}