-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
106 lines (106 loc) · 2.59 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
{
"name": "@eufelipemateus/domino-game",
"version": "2.1.3",
"description": "Domino is a game multiplayer made in node socket.io, typescript, node.js and html5.",
"main": "./._build/Server.js",
"engines": {
"node": ">=v12.13.0"
},
"scripts": {
"build": "eslint && tsc && npm run compile-front",
"serve": "nodemon --watch \"src/**/*\" -e ts --exec \"ts-node -r tsconfig-paths/register\" ./src/Server.ts",
"start": "node ./._build/Server.js",
"pm2:start": "pm2 start",
"minify": "jsmin -o ._build/build.js ._build/* ",
"compile-front": "tsc -p public/tsconfig.json",
"postinstall": "cp .env.example .env && npm run build",
"deploy-production": "pm2 deploy ecosystem.config.js ",
"reload-production": "pm2 deploy ecosystem.config.js exec 'pm2 reload app'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eufelipemateus/domino-game.git"
},
"keywords": [
"Domino",
"Game",
"multiplaer",
"Online",
"Express",
"HTML5",
"Typescript",
"Jogos-online",
"Learn",
"socket.io",
"realtime",
"developers",
"dev",
"realtime",
"Games",
"jogo",
"dev-pleno",
"jogos",
"geek",
"dom-html",
"dev-junior",
"runtime",
"DOM-Element",
"brazil",
"gme",
"jogo-tabuleiro",
"fun",
"full-stack-developer",
"Dom"
],
"author": {
"name": "Felipe Mateus",
"email": "eu@felipemateus.com",
"url": "https://eufelipemateus.com/"
},
"funding": [
{
"type": "liberapay",
"url": "https://liberapay.com/eufelipemateus"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=WV4K7MQZY5W3N"
}
],
"license": "CC-BY-NC-4.0",
"dependencies": {
"dotenv": "16.4.5",
"express": "^4.18.2",
"express-session": "~1.18.0",
"pm2": "^5.3.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"systemjs": "^6.14.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jsmin": "^1.0.1",
"lint-staged": "15.2.2",
"nodemon": "^3.0.3",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^4.3.5"
},
"bugs": {
"url": "https://github.com/eufelipemateus/domino-game/issues"
},
"homepage": "https://domino.felipemateus.com",
"bin": {
"domino-game": "bin/cli.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}