Update README.md and remove npm scripts

This commit is contained in:
Hri7566 2024-01-22 03:21:39 -05:00
parent 60f76a1594
commit c2eb3e2910
2 changed files with 28 additions and 39 deletions

View File

@ -47,16 +47,10 @@ The commit history includes BopItFreak's server because this server is (debatabl
$ bunx prisma db push
```
5. Build
5. Run
```
$ bun run build
```
6. Run
```
$ bun start
$ bun .
```
## Development

View File

@ -1,33 +1,28 @@
{
"name": "mpp-server",
"version": "2.0.0",
"description": "Hri7566's MPP Server",
"main": "src/index.ts",
"scripts": {
"start": "bun .",
"build": "bun build ./src/index.ts --outdir=out",
"dev": "bun run src/index.ts"
},
"keywords": [],
"author": "Hri7566",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.7.0",
"@t3-oss/env-core": "^0.6.1",
"bun-types": "^1.0.1",
"commander": "^11.1.0",
"date-holidays": "^3.21.5",
"dotenv": "^8.6.0",
"events": "^3.3.0",
"fancy-text-converter": "^1.0.9",
"keccak": "^2.1.0",
"unique-names-generator": "^4.7.1",
"yaml": "^2.3.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/node": "^20.5.9",
"prisma": "5.7.0",
"typescript": "^5.2.2"
}
"name": "mpp-server",
"version": "2.0.0",
"description": "Hri7566's MPP Server",
"main": "src/index.ts",
"keywords": [],
"author": "Hri7566",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.7.0",
"@t3-oss/env-core": "^0.6.1",
"bun-types": "^1.0.1",
"commander": "^11.1.0",
"date-holidays": "^3.21.5",
"dotenv": "^8.6.0",
"events": "^3.3.0",
"fancy-text-converter": "^1.0.9",
"keccak": "^2.1.0",
"unique-names-generator": "^4.7.1",
"yaml": "^2.3.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/node": "^20.5.9",
"prisma": "5.7.0",
"typescript": "^5.2.2"
}
}