feat: scaffold application
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s

This commit is contained in:
2025-07-03 20:08:30 -07:00
parent 2752f286df
commit 452f7bb35b
37 changed files with 12484 additions and 11 deletions

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "hikari",
"version": "0.0.0",
"description": "Dashboard and account management for NHCarrigan",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "turbo lint",
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test"
},
"keywords": [],
"author": "Naomi Carrigan",
"license": "See license in LICENSE.md",
"packageManager": "pnpm@10.12.3",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"eslint": "9.30.1",
"turbo": "2.5.4"
}
}