-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.73 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
34
35
36
{
"private": true,
"name": "purescript-emo8",
"license": "MIT",
"scripts": {
"clean": "rimraf dist output generated-docs .spago .cache .psci_modules",
"build:lib": "spago build",
"build:example:hello": "spago build --path example/hello/Main.purs",
"build:example:basic": "spago build --path example/basic/Main.purs",
"build:example:emodius": "spago build --path \"example/emodius/**/*.purs\"",
"build:example": "run-s build:example:*",
"build": "run-s build:*",
"bundle:example:hello:js": "spago bundle-app --path example/hello/Main.purs --to dist/example/hello/index.js",
"bundle:example:hello:css": "cpx asset/index.css dist/example/hello",
"bundle:example:hello:html": "cpx asset/index.html dist/example/hello",
"bundle:example:hello": "run-s bundle:example:hello:*",
"bundle:example:basic:js": "spago bundle-app --path example/basic/Main.purs --to dist/example/basic/index.js",
"bundle:example:basic:css": "cpx asset/index.css dist/example/basic",
"bundle:example:basic:html": "cpx asset/index.html dist/example/basic",
"bundle:example:basic": "run-s bundle:example:basic:*",
"bundle:example:emodius:js": "spago bundle-app --path \"example/emodius/**/*.purs\" --to dist/example/emodius/index.js",
"bundle:example:emodius:css": "cpx asset/index.css dist/example/emodius",
"bundle:example:emodius:html": "cpx asset/index.html dist/example/emodius",
"bundle:example:emodius": "run-s bundle:example:emodius:*",
"bundle:example": "run-s bundle:example:*",
"dev": "parcel serve asset/index.html"
},
"devDependencies": {
"cpx": "^1.5.0",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"purescript": "^0.13.6",
"rimraf": "^3.0.2",
"spago": "^0.15.2"
}
}