-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
35 lines (35 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "jrgame",
"version": "0.1.0",
"description": "Multiplayer online RPG using Phaser 3 and Socket.io",
"private": true,
"workspaces": [
"packages/*"
],
"author": "jackyrusly",
"license": "MIT",
"scripts": {
"clean": "rm -rf node_modules packages/**/node_modules packages/**/dist",
"build": "yarn build:shared && concurrently \"yarn build:client\" \"yarn build:server\"",
"build:client": "nx build @jrgame/client",
"build:server": "nx build @jrgame/server",
"build:shared": "nx build @jrgame/shared",
"dev": "concurrently \"yarn:dev:*\"",
"dev:client": "nx dev @jrgame/client",
"dev:server": "nx dev @jrgame/server",
"start": "nx start @jrgame/server"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"nx": "^15.9.1",
"prettier": "^2.8.7",
"typescript": "^5.0.3"
}
}