-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "hpc-project",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "MODE=testing mocha --exit -r ts-node/register src/test/*.test.ts",
"start:test": "ts-node-dev src/test/index.ts",
"start:server": "ts-node-dev src/server/index.ts",
"start:slave": "ts-node-dev src/slave/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theProgrammerDavid/hpc-project.git"
},
"author": "thebongy, theProgrammerDavid",
"license": "ISC",
"bugs": {
"url": "https://github.com/theProgrammerDavid/hpc-project/issues"
},
"homepage": "https://github.com/theProgrammerDavid/hpc-project#readme",
"dependencies": {
"nanoid": "^3.1.22",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/socket.io": "^2.1.13",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6"
}
}