forked from thomashoneyman/purescript-halogen-realworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.11 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
32
33
{
"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": "^13.0.0",
"parcel": "^2.0.0-rc.0",
"purescript-psa": "^0.8.2",
"purs-tidy": "^0.1.1"
},
"dependencies": {
"decimal.js": "^10.3.1",
"marked": "^2.1.3"
}
}