tauri/examples/react/gatsby-themed-site/package.json

52 lines
1.7 KiB
JSON
Raw Normal View History

[WIP] example / gatsby / themed-site (#120) * add themed gatsby site as example and test target * add specific example ignores to gitignore * update api key reference * theme needs the alpha version currently * update and pin deps * remove lock file, we want a fresh build to test every time * add recipe theme for cheap way to add to ton of site pages * add tauri as dev dep * build gatsby as a smoke test * cd on each step * pass api key * chore(package.json): update * schedule renovate to tone down noisiness (#122) Also, there is a running theory that Tuesday is a good day for upgrades. * combine jobs and add step with conditional (#121) * combine jobs and add step with conditional * too many equals * Update dependency fast-glob to v3.1.1 (#113) * chore(yarn.lock): update * chore(versions): bump tauri.js & tauri * feat(gatsby): include tauri resources * feat(build): tauri build works * tauri prod and source scripts * add build from source and artifact upload to action * don't need to init, examples are already * point to direct executable with matrix * ignore WixTools from build * config app name * build and install source deps before build project on source * odd things when tauri is defined in a script, remove * set gatsby config to what is believed will be ~es5 * babel plugin is actually neeeded * run subscripts with yarn * lower timeout limit to 30 minutes, easy to swamp CI with this * shorten job names * install tauri-cli (rust) * make API key optional (sort of hacky) * install rust for prod for cargo command following * artifact name cannot have / within it * windows is running a tad slow
2019-12-02 17:20:20 +03:00
{
"name": "personal-themed-site",
"version": "0.0.0",
"author": "Jacob Bolda <me@jacobbolda.com>",
"license": "MIT",
"private": true,
"browserslist": {
"ie": "9"
},
"scripts": {
"build": "gatsby build",
"build:hard": "gatsby clean && gatsby build",
"develop": "gatsby develop",
"dev:hard": "gatsby clean && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"tauri:prod": "tauri",
"tauri:source": "node ../../../cli/tauri.js/bin/tauri",
"tauri:source:init": "yarn tauri:source init --tauriPath ../../../tauri",
"tauri:prod:init": "yarn tauri:prod init",
[WIP] example / gatsby / themed-site (#120) * add themed gatsby site as example and test target * add specific example ignores to gitignore * update api key reference * theme needs the alpha version currently * update and pin deps * remove lock file, we want a fresh build to test every time * add recipe theme for cheap way to add to ton of site pages * add tauri as dev dep * build gatsby as a smoke test * cd on each step * pass api key * chore(package.json): update * schedule renovate to tone down noisiness (#122) Also, there is a running theory that Tuesday is a good day for upgrades. * combine jobs and add step with conditional (#121) * combine jobs and add step with conditional * too many equals * Update dependency fast-glob to v3.1.1 (#113) * chore(yarn.lock): update * chore(versions): bump tauri.js & tauri * feat(gatsby): include tauri resources * feat(build): tauri build works * tauri prod and source scripts * add build from source and artifact upload to action * don't need to init, examples are already * point to direct executable with matrix * ignore WixTools from build * config app name * build and install source deps before build project on source * odd things when tauri is defined in a script, remove * set gatsby config to what is believed will be ~es5 * babel plugin is actually neeeded * run subscripts with yarn * lower timeout limit to 30 minutes, easy to swamp CI with this * shorten job names * install tauri-cli (rust) * make API key optional (sort of hacky) * install rust for prod for cargo command following * artifact name cannot have / within it * windows is running a tad slow
2019-12-02 17:20:20 +03:00
"tauri:source:dev": "yarn tauri:source dev",
"tauri:prod:dev": "yarn tauri:prod dev",
"tauri:source:build": "yarn tauri:source build",
"tauri:prod:build": "yarn tauri:prod build",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
2019-12-29 16:17:59 +03:00
"@emotion/core": "10.0.27",
"@jbolda/gatsby-theme-articles": "0.0.6",
"@jbolda/gatsby-theme-homepage": "0.0.7",
"@jbolda/gatsby-theme-layout": "0.0.6",
"@mdx-js/mdx": "1.5.3",
"@mdx-js/react": "1.5.3",
2019-12-29 16:17:59 +03:00
"gatsby": "2.18.17",
"gatsby-image": "2.2.37",
"gatsby-plugin-mdx": "1.0.64",
"gatsby-plugin-netlify": "2.1.30",
"gatsby-plugin-react-helmet": "3.1.18",
"gatsby-plugin-sharp": "2.3.10",
"gatsby-plugin-theme-ui": "0.2.53",
"gatsby-source-filesystem": "2.1.43",
"gatsby-transformer-sharp": "2.3.9",
[WIP] example / gatsby / themed-site (#120) * add themed gatsby site as example and test target * add specific example ignores to gitignore * update api key reference * theme needs the alpha version currently * update and pin deps * remove lock file, we want a fresh build to test every time * add recipe theme for cheap way to add to ton of site pages * add tauri as dev dep * build gatsby as a smoke test * cd on each step * pass api key * chore(package.json): update * schedule renovate to tone down noisiness (#122) Also, there is a running theory that Tuesday is a good day for upgrades. * combine jobs and add step with conditional (#121) * combine jobs and add step with conditional * too many equals * Update dependency fast-glob to v3.1.1 (#113) * chore(yarn.lock): update * chore(versions): bump tauri.js & tauri * feat(gatsby): include tauri resources * feat(build): tauri build works * tauri prod and source scripts * add build from source and artifact upload to action * don't need to init, examples are already * point to direct executable with matrix * ignore WixTools from build * config app name * build and install source deps before build project on source * odd things when tauri is defined in a script, remove * set gatsby config to what is believed will be ~es5 * babel plugin is actually neeeded * run subscripts with yarn * lower timeout limit to 30 minutes, easy to swamp CI with this * shorten job names * install tauri-cli (rust) * make API key optional (sort of hacky) * install rust for prod for cargo command following * artifact name cannot have / within it * windows is running a tad slow
2019-12-02 17:20:20 +03:00
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"theme-ui": "0.2.52"
[WIP] example / gatsby / themed-site (#120) * add themed gatsby site as example and test target * add specific example ignores to gitignore * update api key reference * theme needs the alpha version currently * update and pin deps * remove lock file, we want a fresh build to test every time * add recipe theme for cheap way to add to ton of site pages * add tauri as dev dep * build gatsby as a smoke test * cd on each step * pass api key * chore(package.json): update * schedule renovate to tone down noisiness (#122) Also, there is a running theory that Tuesday is a good day for upgrades. * combine jobs and add step with conditional (#121) * combine jobs and add step with conditional * too many equals * Update dependency fast-glob to v3.1.1 (#113) * chore(yarn.lock): update * chore(versions): bump tauri.js & tauri * feat(gatsby): include tauri resources * feat(build): tauri build works * tauri prod and source scripts * add build from source and artifact upload to action * don't need to init, examples are already * point to direct executable with matrix * ignore WixTools from build * config app name * build and install source deps before build project on source * odd things when tauri is defined in a script, remove * set gatsby config to what is believed will be ~es5 * babel plugin is actually neeeded * run subscripts with yarn * lower timeout limit to 30 minutes, easy to swamp CI with this * shorten job names * install tauri-cli (rust) * make API key optional (sort of hacky) * install rust for prod for cargo command following * artifact name cannot have / within it * windows is running a tad slow
2019-12-02 17:20:20 +03:00
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"tauri": "0.2.1"
[WIP] example / gatsby / themed-site (#120) * add themed gatsby site as example and test target * add specific example ignores to gitignore * update api key reference * theme needs the alpha version currently * update and pin deps * remove lock file, we want a fresh build to test every time * add recipe theme for cheap way to add to ton of site pages * add tauri as dev dep * build gatsby as a smoke test * cd on each step * pass api key * chore(package.json): update * schedule renovate to tone down noisiness (#122) Also, there is a running theory that Tuesday is a good day for upgrades. * combine jobs and add step with conditional (#121) * combine jobs and add step with conditional * too many equals * Update dependency fast-glob to v3.1.1 (#113) * chore(yarn.lock): update * chore(versions): bump tauri.js & tauri * feat(gatsby): include tauri resources * feat(build): tauri build works * tauri prod and source scripts * add build from source and artifact upload to action * don't need to init, examples are already * point to direct executable with matrix * ignore WixTools from build * config app name * build and install source deps before build project on source * odd things when tauri is defined in a script, remove * set gatsby config to what is believed will be ~es5 * babel plugin is actually neeeded * run subscripts with yarn * lower timeout limit to 30 minutes, easy to swamp CI with this * shorten job names * install tauri-cli (rust) * make API key optional (sort of hacky) * install rust for prod for cargo command following * artifact name cannot have / within it * windows is running a tad slow
2019-12-02 17:20:20 +03:00
}
}