-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "alkito-js-mmorpg",
"version": "0.0.1",
"description": "A 2D web based MMORPG",
"main": "src/app.ts",
"scripts": {
"dev": "vite --port 8080",
"build": "tsc && vite build",
"serve": "vite preview",
"server": "nodemon src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Colmea/alkito-js-mmorpg.git"
},
"author": "Arthur Schwaiger",
"license": "ISC",
"bugs": {
"url": "https://github.com/Colmea/alkito-js-mmorpg/issues"
},
"homepage": "https://github.com/Colmea/alkito-js-mmorpg#readme",
"dependencies": {
"express": "^4.18.1",
"lodash": "^4.17.15",
"phaser": "^3.55.1",
"phaser-navmesh": "2.0.5",
"phaser3-react": "^1.2.5",
"react": "^16.13.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-spring": "^8.0.27",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.2",
"nodemon": "^2.0.19",
"postcss": "^8.4.16",
"serve": "^11.3.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.0.5"
},
"engines": {
"node": "16.x"
}
}