-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
51 lines (51 loc) · 1.4 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
51
{
"name": "purescript-react-realworld",
"version": "4.1.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": "yarn build:clean && spago build",
"build:clean": "rm -Rf output",
"bundle": "yarn bundle:build && yarn bundle:parcel",
"bundle:build": "yarn build:clean && spago -x spago.production.dhall build",
"bundle:parcel": "parcel build index.html --no-source-maps",
"clean": "rm -Rf .cache dist serve output output-es 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.8.2",
"purescript": "0.15.4",
"purescript-psa": "^0.8.2",
"purs-backend-es": "^1.3.1",
"purs-tidy": "^0.9.2",
"spago": "^0.20.9"
},
"dependencies": {
"dayjs": "^1.11.7",
"nano-markdown": "^1.2.1",
"preact": "^10.11.3",
"xhr2": "^0.2.1"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}