-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "astra-engine",
"version": "0.1.59",
"main": "./build/index.js",
"author": "D. <[email protected]>",
"description": "game web-engine",
"scripts": {
"build": "tsc",
"test": "jest --detectOpenHandles --forceExit --runInBand",
"prepare": "npm run build",
"game": "node --inspect=5858 -r ts-node/register ./tests/game/test.ts",
"game:watch": "nodemon --ext ts --watch tests/**/* --exec yarn game",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/danixoon/astra-engine"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"express": "^4.17.1",
"lodash": "^4.17.15",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/socket.io": "^2.1.3",
"@types/socket.io-client": "^1.4.32",
"concurrently": "^4.1.2",
"jest": "^24.9.0",
"madge": "^3.4.4",
"nodemon": "^1.19.2",
"socket.io-client": "^2.3.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}