mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 21:45:53 -05:00
This will automatically restart the backend server in docker anytime there are changes to the original source files instead of copying over when running in dev mode. In production, it will still do the normal copy/build.
25 lines
497 B
JSON
25 lines
497 B
JSON
{
|
|
"name": "@the-game/utils",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"start:app:dev": "yarn watch",
|
|
"start:backend:dev": "yarn watch",
|
|
"prepare": "yarn build",
|
|
"build": "tsc",
|
|
"watch": "tsc -w"
|
|
},
|
|
"dependencies": {
|
|
"ethers": "^4.0.47",
|
|
"js-base64": "^2.5.2",
|
|
"typescript": "^3.8.3",
|
|
"uuid": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/uuid": "^8.0.0"
|
|
}
|
|
}
|