2019-07-22 18:11:26 +03:00
|
|
|
{
|
2019-07-29 21:56:41 +03:00
|
|
|
"name": "elm-pages",
|
2023-01-22 20:33:26 +03:00
|
|
|
"type": "module",
|
2023-01-25 04:07:12 +03:00
|
|
|
"version": "3.0.0-beta.19",
|
2021-05-16 05:49:42 +03:00
|
|
|
"homepage": "https://elm-pages.com",
|
2020-10-21 20:23:07 +03:00
|
|
|
"moduleResolution": "node",
|
2019-07-29 23:44:26 +03:00
|
|
|
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",
|
2019-08-15 03:42:02 +03:00
|
|
|
"main": "index.js",
|
2019-07-22 18:11:26 +03:00
|
|
|
"scripts": {
|
2022-03-10 01:00:24 +03:00
|
|
|
"start": "cd examples/end-to-end && npm i && npx elm-pages dev",
|
2022-08-21 10:42:17 +03:00
|
|
|
"test": "./test.sh",
|
2022-03-10 00:36:14 +03:00
|
|
|
"test:snapshot": "(cd examples/escaping && npm install && npm test) && (cd examples/base-path && npm install && npm test)",
|
2022-02-26 20:47:17 +03:00
|
|
|
"cypress": "npm start & cypress run",
|
2023-01-22 20:33:26 +03:00
|
|
|
"build:generator": "elm-codegen install && (cd codegen && lamdera make Generate.elm --output elm-pages-codegen.js && mv elm-pages-codegen.js elm-pages-codegen.cjs)",
|
2020-12-07 19:31:06 +03:00
|
|
|
"review": "elm-review"
|
2019-07-22 18:11:26 +03:00
|
|
|
},
|
2019-08-21 09:02:38 +03:00
|
|
|
"repository": "https://github.com/dillonkearns/elm-pages",
|
|
|
|
"keywords": [
|
|
|
|
"elm",
|
2021-05-16 05:49:42 +03:00
|
|
|
"JAMstack",
|
2019-08-21 09:02:38 +03:00
|
|
|
"ssg",
|
|
|
|
"static site generator",
|
|
|
|
"pwa"
|
|
|
|
],
|
2019-07-22 18:11:26 +03:00
|
|
|
"author": "Dillon Kearns",
|
2019-08-21 09:02:38 +03:00
|
|
|
"license": "BSD-3-Clause",
|
2019-07-23 16:08:00 +03:00
|
|
|
"dependencies": {
|
2021-12-30 00:02:45 +03:00
|
|
|
"busboy": "^1.0.0",
|
2022-02-22 01:23:17 +03:00
|
|
|
"chokidar": "^3.5.3",
|
2023-01-22 20:33:26 +03:00
|
|
|
"commander": "^10.0.0",
|
2021-04-09 22:00:24 +03:00
|
|
|
"connect": "^3.7.0",
|
2022-01-21 05:00:38 +03:00
|
|
|
"cookie-signature": "^1.1.0",
|
2021-02-16 14:13:52 +03:00
|
|
|
"cross-spawn": "7.0.3",
|
2022-08-22 18:35:11 +03:00
|
|
|
"devcert": "^1.2.2",
|
2021-05-28 21:37:03 +03:00
|
|
|
"elm-doc-preview": "^5.0.5",
|
2021-04-06 18:26:44 +03:00
|
|
|
"elm-hot": "^1.1.6",
|
2023-01-08 22:53:15 +03:00
|
|
|
"esbuild": "^0.16.15",
|
2023-01-22 20:33:26 +03:00
|
|
|
"fs-extra": "^11.1.0",
|
|
|
|
"globby": "^13.1.3",
|
2021-05-08 18:22:31 +03:00
|
|
|
"gray-matter": "^4.0.3",
|
2021-08-20 19:46:16 +03:00
|
|
|
"jsesc": "^3.0.2",
|
2022-08-22 18:38:40 +03:00
|
|
|
"kleur": "^4.1.5",
|
2023-01-06 21:03:19 +03:00
|
|
|
"make-fetch-happen": "^11.0.2",
|
2022-08-22 18:38:40 +03:00
|
|
|
"memfs": "^3.4.7",
|
2022-08-22 18:35:11 +03:00
|
|
|
"micromatch": "^4.0.5",
|
2022-08-22 18:33:51 +03:00
|
|
|
"serve-static": "^1.15.0",
|
2022-12-07 20:36:50 +03:00
|
|
|
"terser": "^5.16.1",
|
2023-01-08 22:46:34 +03:00
|
|
|
"vite": "^4.0.4",
|
2023-01-22 20:33:26 +03:00
|
|
|
"which": "^3.0.0"
|
2019-07-23 16:08:00 +03:00
|
|
|
},
|
2019-07-22 18:11:26 +03:00
|
|
|
"devDependencies": {
|
2021-04-11 03:07:42 +03:00
|
|
|
"@types/cross-spawn": "^6.0.2",
|
2022-08-22 18:38:40 +03:00
|
|
|
"@types/fs-extra": "^9.0.13",
|
2023-01-06 21:03:19 +03:00
|
|
|
"@types/make-fetch-happen": "^10.0.1",
|
2021-08-26 03:54:05 +03:00
|
|
|
"@types/micromatch": "^4.0.2",
|
2022-11-16 03:55:07 +03:00
|
|
|
"@types/node": "^18.11.9",
|
2022-08-22 18:38:40 +03:00
|
|
|
"@types/serve-static": "^1.15.0",
|
2023-01-25 03:09:21 +03:00
|
|
|
"cypress": "^12.4.0",
|
2022-09-12 20:16:00 +03:00
|
|
|
"elm-codegen": "^0.2.0",
|
2022-11-16 03:57:29 +03:00
|
|
|
"elm-optimize-level-2": "^0.3.5",
|
2022-11-16 03:02:17 +03:00
|
|
|
"elm-review": "^2.8.2",
|
2023-01-08 22:54:56 +03:00
|
|
|
"elm-test": "^0.19.1-revision11",
|
2023-01-08 22:53:15 +03:00
|
|
|
"elm-tooling": "^1.11.0",
|
2021-12-18 22:22:55 +03:00
|
|
|
"elm-verify-examples": "^5.2.0",
|
2021-08-25 19:51:29 +03:00
|
|
|
"elmi-to-json": "^1.2.0",
|
2023-01-08 22:55:50 +03:00
|
|
|
"mocha": "^10.2.0",
|
2022-11-16 03:57:29 +03:00
|
|
|
"typescript": "^4.9.3"
|
2019-07-24 07:04:12 +03:00
|
|
|
},
|
2019-07-29 23:53:30 +03:00
|
|
|
"files": [
|
2021-05-19 17:54:10 +03:00
|
|
|
"generator/src/",
|
2021-08-27 20:27:37 +03:00
|
|
|
"generator/review/",
|
2022-10-05 00:28:00 +03:00
|
|
|
"generator/dead-code-review/",
|
2021-08-27 20:27:37 +03:00
|
|
|
"src/",
|
2023-01-22 20:33:26 +03:00
|
|
|
"codegen/elm-pages-codegen.cjs",
|
2021-08-01 06:31:15 +03:00
|
|
|
"generator/template/",
|
|
|
|
"generator/static-code/"
|
2019-07-29 23:53:30 +03:00
|
|
|
],
|
2019-07-24 07:04:12 +03:00
|
|
|
"bin": {
|
2021-04-18 01:04:24 +03:00
|
|
|
"elm-pages": "generator/src/cli.js"
|
2019-07-22 18:11:26 +03:00
|
|
|
}
|
2023-01-25 03:09:21 +03:00
|
|
|
}
|