forked from felixlapierre/node-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
{
"name": "game",
"version": "1.0.0",
"description": "Online multiplayer survival game made using Javascript, Node.js, Sockets.io, Express. \r 2018",
"private": true,
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts",
"start": "npm run build && npm run run",
"run": "node ./build/server.js",
"build": "npm run compile && npm run webpack && npm run copy",
"compile": "tsc",
"webpack": "npx webpack",
"copy": "copyfiles -u 1 -e src/**/*.ts src/**/* build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixlapierre1/node-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/felixlapierre1/node-game/issues"
},
"homepage": "https://github.com/felixlapierre1/node-game#readme",
"dependencies": {
"express": "^4.16.3",
"path": "^0.12.7",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.3",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"chai": "^4.2.0",
"copyfiles": "^2.1.1",
"mocha": "^6.2.0",
"socket.io": "^2.2.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}