23 lines
800 B
JSON
23 lines
800 B
JSON
{
|
|
"name": "nitinol",
|
|
"version": "0.1.0",
|
|
"description": "A malleable PWA template using Mithril and LIPS Scheme.",
|
|
"author": "Jakub Nowak",
|
|
"license": "AGPL-3.0-or-later",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:frontend": "rm -rf build/app && mkdir -p build/app && cp -R app/* build/app/. && cp -R lib build/app/lib",
|
|
"watch:frontend": "onchange 'app/**/*' 'lib/**/*' -- npm run build:frontend",
|
|
"start:frontend": "serve build/app",
|
|
"preview": "npm run build:frontend && concurrently \"npm run watch:frontend\" \"npm run start:frontend\""
|
|
},
|
|
"dependencies": {
|
|
"lips": "^1.0.0-beta.20",
|
|
"mithril": "^2.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^10.0.3",
|
|
"onchange": "^7.1.0",
|
|
"serve": "^14.2.6"
|
|
}
|
|
}
|