-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 779 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 779 Bytes
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
{
"name": "minesweeper-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "ts-mocha --require ./babel-require.js test/**/*.spec.ts",
"dev": "ts-node-dev --require ./babel-require.js ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/socket.io": "^2.1.2",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-mocha": "^6.0.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2"
},
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.2.0"
}
}