mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-23 14:15:33 +03:00
81 lines
2.2 KiB
JSON
81 lines
2.2 KiB
JSON
{
|
|
"name": "elm-pages",
|
|
"version": "3.0.0-beta.10",
|
|
"homepage": "https://elm-pages.com",
|
|
"moduleResolution": "node",
|
|
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "cd examples/end-to-end && npm i && npx elm-pages dev",
|
|
"test": "./test.sh",
|
|
"test:snapshot": "(cd examples/escaping && npm install && npm test) && (cd examples/base-path && npm install && npm test)",
|
|
"cypress": "npm start & cypress run",
|
|
"build:generator": "elm-codegen install && (cd codegen && lamdera make Generate.elm --output elm-pages-codegen.js)",
|
|
"review": "elm-review"
|
|
},
|
|
"repository": "https://github.com/dillonkearns/elm-pages",
|
|
"keywords": [
|
|
"elm",
|
|
"JAMstack",
|
|
"ssg",
|
|
"static site generator",
|
|
"pwa"
|
|
],
|
|
"author": "Dillon Kearns",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"busboy": "^1.0.0",
|
|
"chokidar": "^3.5.3",
|
|
"commander": "9.4.1",
|
|
"connect": "^3.7.0",
|
|
"cookie-signature": "^1.1.0",
|
|
"cross-spawn": "7.0.3",
|
|
"devcert": "^1.2.2",
|
|
"elm-doc-preview": "^5.0.5",
|
|
"elm-hot": "^1.1.6",
|
|
"esbuild": "^0.15.5",
|
|
"fs-extra": "^10.1.0",
|
|
"globby": "11.0.4",
|
|
"gray-matter": "^4.0.3",
|
|
"jsesc": "^3.0.2",
|
|
"kleur": "^4.1.5",
|
|
"memfs": "^3.4.7",
|
|
"micromatch": "^4.0.5",
|
|
"node-fetch": "^2.6.7",
|
|
"object-hash": "^2.2.0",
|
|
"serve-static": "^1.15.0",
|
|
"terser": "^5.15.1",
|
|
"vite": "^3.1.8",
|
|
"which": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cross-spawn": "^6.0.2",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/micromatch": "^4.0.2",
|
|
"@types/node": "12.20.12",
|
|
"@types/serve-static": "^1.15.0",
|
|
"cypress": "^11.1.0",
|
|
"elm-codegen": "^0.2.0",
|
|
"elm-optimize-level-2": "^0.1.5",
|
|
"elm-review": "^2.8.2",
|
|
"elm-test": "^0.19.1-revision10",
|
|
"elm-tooling": "^1.10.0",
|
|
"elm-verify-examples": "^5.2.0",
|
|
"elmi-to-json": "^1.2.0",
|
|
"mocha": "^10.0.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"files": [
|
|
"generator/src/",
|
|
"generator/review/",
|
|
"generator/dead-code-review/",
|
|
"src/",
|
|
"codegen/elm-pages-codegen.js",
|
|
"generator/template/",
|
|
"generator/static-code/"
|
|
],
|
|
"bin": {
|
|
"elm-pages": "generator/src/cli.js"
|
|
}
|
|
}
|