forked from RSamaium/RPG-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.25 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rpgjs",
"version": "3.0.0-beta",
"engines": {
"node": ">=11.0.0"
},
"description": "RPG JS is a framework for creating RPGs and MMORPG",
"dependencies": {
"concurrently": "^5.3.0",
"msgpack-lite": "^0.1.26",
"socket.io-client": "^4.4.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"artillery": "^1.6.1",
"artillery-engine-socketio-v3": "^1.0.1",
"jest": "^26.4.2",
"lerna": "^4.0.0"
},
"scripts": {
"postinstall": "lerna bootstrap --ci && npm run build:common && npm run build:sync-client && npm run build:sync-server && npm run build:client && npm run build:database && npm run build:server && npm run build:testing && cd tests/unit-tests && npm i && cd ../.. && lerna link && cd packages/client && npm i vue@3 && cd ../.. && lerna link",
"test": "cd tests/unit-tests && npm test && cd ../../packages/sync-server && npm test",
"lerna:publish": "lerna publish --ignore-prepublish --force-publish --no-private --no-push --no-git-tag-version",
"lerna:ls": "lerna ls",
"build": "concurrently -n build \"npm:build:*\"",
"build:common": "cd packages/common && npm run build",
"build:server": "cd packages/server && npm run build",
"build:client": "cd packages/client && npm run build",
"build:database": "cd packages/database && npm run build",
"build:testing": "cd packages/testing && npm run build",
"build:sync-server": "cd packages/sync-server && npm run build",
"watch:sync-server": "cd packages/sync-server && npm run watch",
"build:sync-client": "cd packages/sync-client && npm run build",
"watch:sync-client": "cd packages/sync-client && npm run watch",
"watch:common": "cd packages/common && npm run watch",
"watch:client": "cd packages/client && npm run watch",
"watch:server": "cd packages/server && npm run watch",
"watch:testing": "cd packages/testing && npm run watch",
"watch:database": "cd packages/database && npm run watch",
"dev:watch": "concurrently -n rpgjs \"npm:watch:*\"",
"dev": "concurrently -n rpgjs,sample \"npm:watch:*\" \"cd packages/sample && npm run dev\""
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"rpg",
"mmorpg",
"framework"
],
"author": "Samuel Ronce",
"license": "MIT"
}