diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2023-04-03 22:12:41 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2023-04-03 22:12:41 +0200 |
| commit | 1df1ff6f074528a4ad6d4015c794a1555c1c942f (patch) | |
| tree | ad3b16291748c60441967996706006555919ef73 /package.json | |
| parent | c813dfadd4b673080695ef3ade37a44e37036c07 (diff) | |
| download | fia-1df1ff6f074528a4ad6d4015c794a1555c1c942f.tar.gz fia-1df1ff6f074528a4ad6d4015c794a1555c1c942f.tar.zst fia-1df1ff6f074528a4ad6d4015c794a1555c1c942f.zip | |
Polishing up
Add all files to repo
Add sql database
Correct urls
Add PHP code to repo
Update README.md with instructions how to start
Move from yarn to pnpm
Fix all issues with starting
Fix possibility of player changing their dice roll with refreshing the game
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json index d65ab07..6171eb0 100644 --- a/package.json +++ b/package.json @@ -4,14 +4,16 @@ "repository": "git@github.com:maksJopek/fia.git", "author": "Maks Jopek <maks@jopek.eu>", "license": "GPL-3.0", - "main": "./backend/js/index.js", + "main": "./backend/js/backend/ts/index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start:build-front": "tsc -p ./frontend/tsconfig.json -w", "start:build-back": "tsc -p ./backend/tsconfig.json -w", "start:start": "nodemon ./backend/js/backend/ts/index.js", - "start-dev": "concurrently yarn:start:*", - "start-prod": "node ./backend/js/backend/ts/index.js" + "start-dev": "concurrently pnpm:start:*", + "start-prod": "node ./backend/js/backend/ts/index.js", + "start": "pnpm start-dev", + "dev": "pnpm start-dev" }, "dependencies": { "dotenv": "^8.2.0", |
