forked from toad-lib/toad.dev
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 839 Bytes
/
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
{
"private": true,
"devDependencies": {
"@parcel/optimizer-data-url": "^2.6.1",
"@parcel/transformer-inline-string": "^2.6.1",
"esbuild": "^0.14.45",
"parcel": "^2.6",
"purescript": "0.15.4",
"purescript-psa": "^0.8.2",
"purs-tidy": "^0.9.0",
"spago": "^0.20.9"
},
"scripts": {
"fmt": "purs-tidy format-in-place src test",
"build": "spago build",
"build:watch": "pscid",
"build:prod": "yarn build && parcel build static/index.html",
"b": "yarn build",
"b:w": "yarn build:watch",
"serve": "parcel static/index.html --open",
"s": "yarn serve",
"test": "spago test",
"t": "yarn test"
},
"browserslist": [
"defaults"
],
"dependencies": {
"highlight.js": "git+https://github.com/cakekindel/highlight.js#semver:^12.0.1",
"pscid": "^2.9.3"
}
}