-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 830 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"private": true,
"scripts": {
"build": "spago build",
"repl": "spago -x dev.dhall repl",
"watchExamples": "spago -x dev.dhall build --watch",
"webExample": "spago -x dev.dhall build && concurrently -k -n 'parcel,spago' -c 'green,blue' npm:serve-webExample npm:watch-examples",
"serveWebExample": "parcel serve --open --dist-dir dev examples/Example/$npm_config_module/index.html",
"nodeExample": "spago -x dev.dhall run --watch -m Example.$npm_config_module.Main",
"example:Game": "npm run nodeExample --module=Game",
"example:AffGame": "npm run webExample --module=AffGame"
},
"devDependencies": {
"bower": "^1.8.12",
"concurrently": "^6.1.0",
"parcel": "^2.0.0-beta.2",
"pscid": "^2.9.3",
"pulp": "^15.0.0",
"purescript": "^0.14.2",
"spago": "^0.20.3"
}
}