elm-pages-v3-beta/examples/pokedex/package.json

26 lines
984 B
JSON
Raw Normal View History

{
"name": "elm-pages-example",
"version": "1.0.0",
"description": "Example site built with elm-pages.",
"scripts": {
"start": "elm-pages dev",
"serve": "npm run build && http-server ./dist -a localhost -p 3000 -c-1",
2022-01-03 23:15:26 +03:00
"build": "elm-pages build --debug --keep-cache",
2022-01-25 07:55:07 +03:00
"generate:tailwind": "elm-tailwind-modules --dir ./gen --tailwind-config tailwind.config.js",
"generate:graphql": "elm-graphql https://graphql.us.fauna.com/graphql --header 'authorization: Basic Zm5BRWNiaVRsWkFBU2N4Wk5KYVUxMDk3TjhMSmFDdXlfc1g3ZjZkTTpFbG1QYWdlc1RvZG86YWRtaW4=' --output gen"
},
"author": "Dillon Kearns",
"license": "BSD-3",
"devDependencies": {
2022-01-25 02:37:53 +03:00
"@dillonkearns/elm-graphql": "^4.2.3",
"@netlify/functions": "^0.7.2",
"@tailwindcss/forms": "^0.3.4",
"busboy": "^1.1.0",
"cookie": "^0.4.1",
"elm-pages": "file:../..",
"elm-tailwind-modules": "^0.3.2",
"elm-tooling": "^1.3.0",
"postcss": "^8.4.5",
"tailwindcss": "^2.2.19"
}
2022-01-25 07:55:07 +03:00
}