-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.13 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
{
"private": true,
"devDependencies": {
"esbuild": "^0.14.38",
"purescript": "^0.15.3",
"spago": "^0.20.9"
},
"scripts": {
"build": "spago build",
"build-watch-not-necessary": "npm run build -- --watch",
"bundle": "npm run build && npm run esbuild -- --minify --outfile=dist/main.js",
"clean": "rm -rf node_modules output .spago dist/*.js *.lock .cache",
"esbuild": "esbuild --bundle index.js",
"esbuild-dev": "esbuild --bundle index.js --keep-names --outfile=dist/main.js",
"esbuild-dev-watch": "npm run esbuild-dev -- --watch",
"format": "fish --command 'purs-tidy format-in-place **/*.purs'",
"postinstall": "spago install",
"proxy": "./proxy",
"serve": "npm run esbuild -- --servedir=dist",
"test": "spago test",
"test-watch": "npm run test -- --watch",
"bench": "spago run --main Bench.Main",
"generate-purs": "./generate-purs",
"generate-purs-watch": "watchexec --exts midnight -- npm run generate-purs",
"tailwind": "npx tailwindcss -i ./src/style.css -o ./dist/style.css",
"tailwind-watch": "npx tailwindcss -i ./src/style.css -o ./dist/style.css --watch"
}
}