forked from thomashoneyman/purescript-halogen-realworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 KB
/
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
24
25
26
27
28
29
30
31
{
"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 dce-output .spago dist/* *.lock .cache",
"build": "spago build",
"watch": "spago build --watch",
"serve": "http-server dist",
"serve-dev": "parcel dev/index.html --open",
"test": "spago test",
"bundle:build": "spago build --purs-args '--codegen corefn'",
"bundle:dce": "zephyr -f Main.main",
"bundle:parcel": "parcel build assets/index.html --public-url '.' --no-source-maps",
"bundle": "npm run bundle:build && npm run bundle:dce && npm run bundle:parcel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomashoneyman/purescript-halogen-realworld.git"
},
"devDependencies": {
"http-server": "^0.12.3",
"parcel": "^2.0.0-beta.1"
},
"dependencies": {
"decimal.js": "^10.2.0",
"marked": "^2.0.0"
}
}