Skip to content

Commit

Permalink
create: new backend
Browse files Browse the repository at this point in the history
  • Loading branch information
berzanorg committed Dec 15, 2023
1 parent 3aaa9d4 commit dd03e1e
Show file tree
Hide file tree
Showing 18 changed files with 605 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target
node_modules/
build/
7 changes: 7 additions & 0 deletions backend/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"printWidth": 120
}
19 changes: 19 additions & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "my-app",
"private": true,
"scripts": {
"build": "esbuild src/index.ts --outdir=build ",
"start": "npm run build && node build/index.js"
},
"dependencies": {
"@tinyhttp/app": "latest",
"@tinyhttp/logger": "latest",
"o1js": "^0.14.*",
"xane": "file:../contracts"
},
"type": "module",
"devDependencies": {
"esbuild": "^0.19.9",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit dd03e1e

Please sign in to comment.