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
|
{
"name": "gleam-lustre",
"version": "1.1.0",
"description": "A framework for building web apps - powered by Gleam and React!",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf build dist",
"build": "gleam test && parcel build test/example/index.html",
"build:docs": "gleam docs build && cp -a ./build/dev/docs/lustre/. ./docs/",
"start": "gleam test && concurrently --kill-others \"chokidar \"src/*\" \"test/example/*\" -c \\\"gleam test\\\"\" \"parcel test/example/index.html\"",
"start:docs": "concurrently --kill-others \"chokidar \"src/*\" \"test/example/*\" -c \\\"npm run build:docs\\\"\" \"http-server docs\"",
"start:clean": "npm run clean && npm start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^7.0.0",
"http-server": "^14.1.0",
"parcel": "^2.3.0",
"process": "^0.11.10"
},
"alias": {
"example": "./build/dev/javascript/lustre/dist/example",
"lustre": "./build/dev/javascript/lustre/dist/lustre"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}
|