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
73 lines (73 loc) · 2.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rpgjs",
"version": "3.0.0-beta",
"engines": {
"node": ">=11.0.0"
},
"description": "RPG JS is a framework for creating RPGs and MMORPG",
"dependencies": {
"@vue/cli-plugin-babel": "5.0.4",
"canvas": "^2.8.0",
"concurrently": "^5.3.0",
"core-js": "3.21.1",
"jest": "27.0.4",
"jest-webgl-canvas-mock": "^0.2.3",
"log-with-statusbar": "^1.2.0",
"msgpack-lite": "^0.1.26",
"rxjs": "^7.5.7",
"socket.io-client": "^4.4.1",
"ts-jest": "^27.0.2",
"vue": "^3.2.31",
"yargs": "^17.3.1"
},
"devDependencies": {
"artillery": "^1.6.1",
"artillery-engine-socketio-v3": "^1.0.1",
"jest": "^26.4.2",
"lerna": "^4.0.0",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.24",
"@vue/compiler-sfc": "^3.0.4",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"typescript": "^4.5.5"
},
"scripts": {
"postinstall": "lerna bootstrap --ci && npm run build:types && npm run build:tiled && npm run build:common && npm run build:client && npm run build:database && npm run build:server && npm run build:testing && lerna link && cd packages/client && npm i vue@3 && lerna link && cd ../../packages/plugins/agones/matchmaker && npm i",
"test": "NODE_ENV=test jest",
"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:tiled": "cd packages/tiled && npm run build",
"build:types": "cd packages/types && npm run build",
"build:agones-mm": "cd packages/plugins/agones/matchmaker && npm run build",
"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",
"watch:tiled": "cd packages/tiled && npm run watch",
"watch:types": "cd packages/types && npm run watch",
"watch:agones-mm": "cd packages/plugins/agones/matchmaker && 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"
}