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
|
{
"name": "gleam-lustre",
"version": "1.0.0",
"description": "A Gleam project",
"main": "index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf build dist",
"build:gleam": "gleam build && cd src/lustre && find . -type f -iname \"*.mjs\" -ls -exec ditto {} ../../build/dev/javascript/lustre/dist/lustre/{} \\; && cd ../../",
"build": "npm run build:gleam && parcel build src/index.html",
"start": "npm run build:gleam && concurrently --kill-others \"chokidar src/lustre/* -c \\\"npm run build:gleam\\\"\" \"parcel src/index.html\"",
"start:clean": "npm run clean && npm start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^7.0.0",
"parcel": "^2.3.0",
"process": "^0.11.10"
},
"alias": {
"lustre": "./build/dev/javascript/lustre/dist/lustre"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}
|