treewide: Migrate to the new dream2nix API
This commit is contained in:
parent
5163ef9d6a
commit
40e0946201
59 changed files with 15003 additions and 24504 deletions
108
packages/templates/package.yaml
Normal file
108
packages/templates/package.yaml
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
name: tlaternet
|
||||
version: 1.0.0
|
||||
description: tlaternet web interface
|
||||
author: Tristan Maat <tm@tlater.net>
|
||||
license: MIT
|
||||
private: true
|
||||
|
||||
dependencies:
|
||||
# Libraries
|
||||
gl-matrix: ^3.4.3 # To help with 3D math in WebGL code
|
||||
classnames: ^2.3.2 # To manage CSS class names in react code
|
||||
|
||||
# Fonts
|
||||
hack-font: ^3.3.0
|
||||
'@fontsource/arimo': ^5.0.3
|
||||
'@fontsource/nunito': ^5.0.3
|
||||
'@fortawesome/fontawesome-free': ^6.4.0
|
||||
|
||||
# Frameworks for static content
|
||||
bulma: ^0.9.4
|
||||
|
||||
# React-redux stuff
|
||||
react: ^18.2.0
|
||||
react-dom: ^18.2.0
|
||||
react-use-error-boundary: ^3.0.0 # TODO(tlater): Remove when react implement their own
|
||||
redux: ^4.2.1
|
||||
'@reduxjs/toolkit': ^1.9.5
|
||||
react-redux: ^8.1.0
|
||||
|
||||
devDependencies:
|
||||
# Parcel & plugins
|
||||
parcel: ^2.9.2
|
||||
'@parcel/transformer-sass': ^2.9.2
|
||||
'@parcel/transformer-glsl': ^2.9.2
|
||||
|
||||
# Build tools
|
||||
typescript: ^5.1.3
|
||||
sass: ^1.63.3
|
||||
posthtml-extend: ^0.6.5
|
||||
posthtml-favicons: ^1.4.0
|
||||
posthtml-include: ^1.7.4
|
||||
posthtml-markdownit: ^1.3.1
|
||||
|
||||
'@babel/preset-env': ^7.22.5
|
||||
|
||||
# Type shims
|
||||
'@types/react-dom': ^18.2.5
|
||||
'@types/react-redux': ^7.1.25
|
||||
|
||||
# Dev tools
|
||||
npm-check-updates: ^16.10.12
|
||||
prettier: ^2.8.8
|
||||
typescript-language-server: ^3.3.2
|
||||
typescript-eslint-language-service: ^5.0.5
|
||||
eslint: ^8.42.0
|
||||
'@typescript-eslint/parser': ^5.59.11
|
||||
'@typescript-eslint/eslint-plugin': ^5.59.11
|
||||
vscode-langservers-extracted: ^4.7.0
|
||||
|
||||
scripts:
|
||||
# Dev workflow
|
||||
build: parcel build --no-autoinstall
|
||||
serve: parcel serve --no-autoinstall
|
||||
watch: parcel watch --no-autoinstall
|
||||
|
||||
# Production build
|
||||
build-dist: parcel build --no-cache --no-autoinstall
|
||||
|
||||
# Checks
|
||||
check: tsc --noEmit
|
||||
style: prettier --check src
|
||||
lint: eslint --max-warnings=0 --format unix src
|
||||
|
||||
# Parcel config
|
||||
source:
|
||||
- src/index.html
|
||||
- src/error.html
|
||||
|
||||
browserslist: '> 1%, not dead'
|
||||
|
||||
posthtml:
|
||||
plugins:
|
||||
posthtml-markdownit:
|
||||
root: src
|
||||
posthtml-extend:
|
||||
root: src
|
||||
posthtml-include:
|
||||
root: src
|
||||
posthtml-favicons:
|
||||
root: src
|
||||
outDir: ./dist/
|
||||
configuration:
|
||||
appName: tlater.net
|
||||
appShortName: tlater.net
|
||||
appDescription: tlater's home page
|
||||
developerName: Tristan Daniël Maat
|
||||
developerURL: https://tlater.net
|
||||
dir: auto
|
||||
lang: en-US
|
||||
background: '#0f0f0f'
|
||||
theme_color: '#99d1ce'
|
||||
appleStatusBarStyle: black-translucent
|
||||
display: browser
|
||||
orientation: any
|
||||
start_url: https://tlater.net
|
||||
version: "1.0"
|
||||
icons:
|
||||
favicons: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue