-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.27 KB
/
package.json
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": "erkal.github.io",
"author": "Aziz Erkal Selman",
"description": "",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "elm-tooling install",
"prebuild": "elm-tooling install",
"watch-elm": "npx elm-watch hot",
"build-tailwind": "npx tailwindcss -i ./packages/playground/src/style.css -o ./build/output.css",
"watch-tailwind": "npm run build-tailwind && chokidar './**/*.elm' './**/*.css' -c 'npm run build-tailwind'",
"dev": "node ./scripts/prebuild.js && npx run-pty % npm run watch-tailwind % npm run watch-elm % node ./scripts/generate-index-for-dev.js % open http://localhost:8000/",
"build-elm": "npx elm-watch make --optimize",
"build": "node ./scripts/prebuild.js && npm run build-tailwind && npm run build-elm && node ./scripts/generate-index-for-build.js",
"deploy": "npm run build && gh-pages -d build"
},
"devDependencies": {
"@lydell/elm": "^0.19.1-12",
"@lydell/elm-json": "^0.2.13-1",
"@tailwindcss/typography": "^0.5.13",
"chokidar-cli": "^3.0.0",
"elm-tooling": "^1.15.1",
"elm-watch": "^2.0.0-beta.3",
"gh-pages": "^6.1.0",
"prettier": "^3.2.5",
"run-pty": "^4.1.0",
"shelljs": "^0.8.5",
"tailwindcss": "^3.4.15"
}
}