forked from owenashurst/agar.io-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.37 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
{
"name": "agar.io-clone",
"version": "1.0.0",
"description": "A simple Agar.io clone",
"main": "server/server.js",
"scripts": {
"build": "gulp build",
"start": "gulp run",
"watch": "gulp watch",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/owenashurst/agar.io-clone.git"
},
"author": "Huy Tran",
"maintainers": [
{
"name": "Owen Ashurst"
}
],
"license": "MIT",
"contributors": [
"abalabahaha <[email protected]> (https://github.com/abalabahaha)",
"Ariamiro <[email protected]> (https://github.com/Ariamiro)",
"Bjarne Oeverli <[email protected]> (https://github.com/bjarneo)",
"Chris Morgan <[email protected]> (https://github.com/drpotato)",
"Damian Dlugosz <[email protected]> (https://github.com/bigfoot90)",
"Dan Prince <[email protected]> (https://github.com/danprince)",
"Igor Antun <[email protected]> (https://github.com/IgorAntun)",
"Juha Tauriainen <[email protected]> (https://github.com/JuhQ)",
"Keith Groves <[email protected]> (https://github.com/buskcoin)",
"Kostas Bariotis <[email protected]> (https://github.com/kbariotis)",
"Madara Uchiha <[email protected]> (https://github.com/MadaraUchiha)",
"Nguyen Huu Thanh <[email protected]> (https://github.com/giongto35)",
"PET Computação UFPR <[email protected]> (http://pet.inf.ufpr.br)",
"Saren Currie <[email protected]> (https://github.com/SarenCurrie)",
"VILLERS Mickaël <[email protected]> (https://github.com/villers)",
"wb9688 <[email protected]> (https://github.com/wb9688)"
],
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-loader": "^9.1.2",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-nodemon": "^2.5.0",
"gulp-todo": "^7.1.1",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"sat": "^0.9.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"webpack": "^5.82.1",
"webpack-stream": "^7.0.0"
},
"devDependencies": {
"@types/sat": "^0.0.32",
"plugin-error": "^2.0.1"
}
}