-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.16 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
{
"private": true,
"devDependencies": {
"gh-pages": "^4.0.0",
"parcel": "^2.3.2",
"purescript": "0.14.5",
"spago": "^0.20.7",
"uuid": "^8.3.2"
},
"scripts": {
"test": "spago test --purs-args \"--censor-warnings\"",
"build": "spago build --purs-args \"--censor-warnings\"",
"build-source-maps": "spago bundle-app --purs-args \"--censor-warnings\" --main Main --source-maps --to app/app.js",
"bundle": "spago bundle-app --purs-args \"--censor-warnings\" --main Main --to app/app.js",
"serve": "parcel ./app/index.html",
"run": "spago run",
"launch": "npm run build && npm run bundle && npm run serve",
"deploy-mac": "export NODE_OPTIONS=--no-experimental-fetch && parcel build --no-source-maps ./app/index.html --dist-dir ./docs --public-url ./",
"deploy": "npm run build && node fix-app.js && parcel build --no-source-maps ./app/index.html --dist-dir ./docs --public-url ./"
},
"dependencies": {
"control": "^0.2.3",
"purescript-psa": "^0.8.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"replace-in-file": "^6.3.5",
"shx": "^0.3.4"
},
"homepage": "https://riib11.github.io/shape-lang"
}