-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
33 lines (33 loc) · 908 Bytes
/
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
{
"name": "TibiaJS",
"version": "0.0.0",
"description": "TibiaJS",
"main": "app.js",
"scripts": {
"run": "node ./start.js",
"build": "concurrently \"npm run build:client\" \"npm run build:server\"",
"build:client": "parcel build client/index.html -d out/static --no-minify",
"build:server": "parcel build server/Server.ts -d out --target node --no-minify"
},
"author": {
"name": "Pawel",
"email": ""
},
"dependencies": {
"SpriteGL": "https://github.com/krtr/SpriteGL",
"express": "4.16.3",
"serve-static": "1.13.2",
"socket.io": "2.1.1"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.11.6",
"@types/socket.io": "^1.4.36",
"@types/socket.io-client": "^1.4.32",
"concurrently": "^4.0.1",
"nodemon": "^1.18.10",
"open": "0.0.5",
"parcel-bundler": "^1.10.2",
"typescript": "^3.1.2"
}
}