create remix project

This commit is contained in:
MapleLeaf
2021-12-29 11:41:24 -06:00
parent f3aab8f425
commit ec8dde942b
35 changed files with 5535 additions and 3001 deletions

32
docs/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"private": true,
"name": "reacord-docs",
"description": "",
"license": "",
"scripts": {
"prepare": "typedoc && remix setup node",
"dev": "concurrently 'remix dev' 'typedoc --watch'",
"build": "typedoc && remix build"
},
"dependencies": {
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.1",
"@remix-run/vercel": "^1.1.1",
"@vercel/node": "^1.12.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1",
"typedoc": "^0.22.10"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"concurrently": "^6.5.1",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}