You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
747 B
22 lines
747 B
{
|
|
"name": "ethermap",
|
|
"version": "1.0.0",
|
|
"description": "> This is very much a janky _earlydays_ project. All help is welcome!",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"install:front": "cd ./frontend && npm i",
|
|
"install:back": "cd ./backend && npm i",
|
|
"install:all": "npm-run-all --sequential install:front install:back",
|
|
"migrate:latest": "cd ./backend && npm run migrate:latest",
|
|
"migrate:drop": "cd ./backend && npm run migrate:drop",
|
|
"dev:front": "cd ./frontend && npm run dev",
|
|
"dev:back": "cd ./backend && npm run dev",
|
|
"dev:all": "npm-run-all --parallel dev:front dev:back"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "GPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|
|
|