notohh.dev/package.json
notohh 4edf79e21f
Some checks failed
notohh.dev / build (push) Failing after 1m16s
init 1.0
2024-01-16 02:03:52 -05:00

22 lines
651 B
JSON

{
"name": "14-scss-and-assets",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm i && npm run dev",
"dev": "concurrently \"npm:dev:*\"",
"dev:sass": "sass -w scss/main.scss static/dist/main.css",
"dev:elm-land": "elm-land server",
"build": "npm run build:sass && npm run build:elm-land",
"build:sass": "sass scss/main.scss static/dist/main.css",
"build:elm-land": "elm-land build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "7.6.0",
"sass": "1.57.1"
}
}