-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.07 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.07 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "purescript-react-halo-examples",
"version": "1.0.0",
"description": "React Halo Examples from Halogen",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "spago install",
"examples-basic": "spago --config examples/basic/spago.dhall bundle-app --main Example.Basic.Main --to examples/basic/dist/example.js ; parcel build --no-source-maps examples/basic/dist/index.html ; http-server dist/ -o",
"examples-basic-watch": "spago --config examples/basic/spago.dhall build --watch",
"examples-basic-serve": "parcel serve examples/basic/dist/index.html",
"examples-components": "spago --config examples/components/spago.dhall bundle-app --main Example.Components.Main --to examples/components/dist/example.js ; parcel build --no-source-maps examples/components/dist/index.html ; http-server dist/ -o",
"examples-components-watch": "spago --config examples/components/spago.dhall build --watch",
"examples-components-serve": "parcel serve examples/components/dist/index.html",
"clean": "rm -rf dist/ output/",
"clean-all": "rm -rf dist/ output/ .spago/ .parcel-cache/ node_modules/"
},
"repository": {
"type": "git",
"url": "https://github.com/intronic/purescript-react-halo-examples.git"
},
"keywords": [
"purescript",
"react-halo",
"react-basic-hooks",
"react-basic",
"react",
"mui",
"material-ui",
"halogen"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/intronic/purescript-react-halo-examples/issues"
},
"homepage": "https://github.com/intronic/purescript-react-halo-examples#readme",
"devDependencies": {
"parcel": "^2.0.1",
"purescript": "^0.14.5",
"spago": "^0.20.3"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.5.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"preact": "^10.5.15"
}
}