forked from jonasbuntinx/purescript-react-realworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "purescript-react-realworld",
"version": "3.0.0",
"description": "A real-world application demonstrating PureScript and React",
"keywords": [
"Purescript",
"React",
"RealWorld"
],
"contributors": [
{
"name": "Jonas Buntinx",
"url": "https://github.com/jonasbuntinx"
},
{
"name": "Robert Porter",
"url": "https://github.com/robertdp"
}
],
"license": "MIT",
"scripts": {
"build": "spago build",
"bundle": "yarn bundle:build && yarn bundle:dce && yarn bundle:parcel",
"bundle:build": "spago build --purs-args '--codegen corefn'",
"bundle:dce": "zephyr -f Main.main",
"bundle:parcel": "parcel build index.html --no-source-maps",
"clean": "rm -Rf .cache dist serve output dce-output node_modules .spago *.lock",
"postinstall": "spago install",
"serve": "yarn build && yarn serve:parcel",
"serve:parcel": "parcel serve --no-source-maps --dist-dir serve index.html",
"test": "spago test --no-install"
},
"devDependencies": {
"parcel": "2.0.0",
"purescript": "^0.14.5",
"purescript-psa": "^0.8.2",
"spago": "^0.20.3",
"zephyr": "https://github.com/jonasbuntinx/zephyr.git"
},
"dependencies": {
"dayjs": "^1.10.7",
"nano-markdown": "^1.2.1",
"preact": "^10.5.15",
"xhr2": "^0.2.1"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}