-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.16 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
{
"private": true,
"name": "authoritative-game-server",
"version": "0.0.0",
"description": "Authoritative game server with node and socket.io",
"repository": "https://github.com/zenoplex/authoritative-game-server",
"main": "\"\"",
"scripts": {
"dev:client": "webpack-dev-server",
"dev:server": "tsc-watch -p ./src/server --onSuccess \"node dist/server/index.js\"",
"start:server": "node index.js",
"build:client": "webpack",
"build:server": "tsc -p ./src/server",
"build": "npm run build:client && npm run build:server",
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"multiplayer",
"game"
],
"author": "Gen Ichino <zenoplex@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-typescript": "7.3.3",
"@types/dat.gui": "0.7.2",
"@types/dotenv": "6.1.1",
"@types/express": "4.16.1",
"@types/socket.io": "2.1.2",
"@types/socket.io-client": "1.4.32",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "2.0.2",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-unicorn": "8.0.2",
"html-webpack-plugin": "3.2.0",
"jest": "24.8.0",
"prettier": "1.17.1",
"terser-webpack-plugin": "1.3.0",
"tsc-watch": "2.2.1",
"typescript": "3.4.5",
"webpack": "4.32.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.4.1"
},
"dependencies": {
"@babel/polyfill": "7.4.4",
"core-js": "3.1.3",
"dat.gui": "0.7.6",
"dotenv": "8.0.0",
"express": "4.17.1",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=10.16.0"
}
}