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
|
{
"name": "gleam-lustre",
"version": "1.0.0",
"description": "A Gleam project",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf build dist",
"build": "gleam test && parcel build test/example/index.html",
"start": "gleam test && concurrently --kill-others \"chokidar \"src/*\" \"test/example/*\" -c \\\"gleam test\\\"\" \"parcel test/example/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": {
"example": "./build/dev/javascript/lustre/dist/example",
"lustre": "./build/dev/javascript/lustre/dist/lustre"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}
|