This repository has been archived by the owner on Aug 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.51 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "go-server",
"version": "0.0.6",
"description": "Go Server is a 2-Player Websockets Go Judging Server.",
"main": "public/main/main.js",
"repository": "https://github.com/yahiaetman/Go-Server.git",
"keywords": [
"go-game",
"websockets",
"server",
"cross-platform",
"typescript",
"electron",
"vue2"
],
"author": "Yetman <yahiazakaria13@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"watch:main": "parcel watch src/main/main.ts -d public/main --target electron --no-hmr",
"watch:renderer": "parcel watch src/renderer/index.html -d public/renderer --public-url ./ --target electron --no-hmr",
"production": "parcel build src/main/main.ts -d public/main --public-url ./ --target electron --no-source-maps --no-minify && parcel build src/renderer/index.html -d public/renderer --public-url ./ --target electron --no-source-maps --no-minify",
"console:go": "ts-node ./src/examples/console-go.ts",
"console:server": "ts-node ./src/examples/console-server.ts",
"console:client": "ts-node ./src/examples/console-client.ts",
"console:silly-agent": "cross-env NODE_OPTIONS=--experimental-worker ts-node ./src/examples/console-silly-agent.ts"
},
"jest": {
"preset": "ts-jest"
},
"build": {
"appId": "com.yetman.go",
"mac": {
"category": "public.app-category.games",
"target": "7z"
},
"win": {
"target": "7z"
},
"linux": {
"target": "7z"
},
"directories": {
"output": "dist"
},
"files": [
{
"filter": [
"!.vscode${/*}",
"!.cache${/*}",
"!.github${/*}",
"!src${/*}",
"!typings${/*}",
"!tests${/*}",
"!dist${/*}",
"!docs${/*}",
"!logs${/*}",
"!checkpoints${/*}",
"!.eslintrc.json",
"!.gitignore",
"!game.config.json",
"!server.config.json",
"!desktop.ini",
"!mix-manifest.json",
"!README.md",
"!LICENSE"
]
}
],
"extraFiles": [
{
"filter": [
"game.config.json",
"server.config.json"
]
}
]
},
"dependencies": {
"dateformat": "^3.0.3",
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1",
"lodash": "^4.17.19",
"material-design-icons": "^3.0.1",
"three-dots": "^0.1.2",
"tocktimer": "^1.0.12",
"tslib": "^1.10.0",
"typeface-roboto": "^0.0.75",
"vue": "^2.6.10",
"vue-property-decorator": "^8.2.2",
"winston": "^3.2.1",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/dateformat": "^3.0.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.149",
"@types/tocktimer": "^1.0.1",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"@vue/component-compiler-utils": "^3.0.0",
"cross-env": "^6.0.3",
"electron": "^9.4.0",
"electron-builder": "^21.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"sass": "^1.22.10",
"ts-jest": "^24.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.7.5",
"vue-template-compiler": "^2.6.10"
}
}