-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.28 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ide-taskmaster",
"version": "0.0.0",
"description": "The taskmaster is a component of Online IDE and Compiler project which processes the code execution tasks.",
"scripts": {
"prebuild": "mkdirp dist",
"build": "tsc",
"prestart": "npm run dist",
"start": "node dist/taskmaster",
"dev": "nodemon --exec ts-node src/taskmaster.ts",
"test": "mocha --timeout 60000 --exit --require ts-node/register test/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/dotenv": "^6.1.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/shelljs": "^0.8.5",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"@google-cloud/error-reporting": "^1.1.2",
"@google-cloud/pubsub": "^0.30.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"grpc": "^1.24.3",
"mkdirp": "^1.0.4",
"shelljs": "^0.8.3"
},
"engines": {
"node": "8 || 10",
"npm": ">= 5",
"yarn": ">= 1"
},
"nodemonConfig": {
"ignore": [
"src/types",
"dist/",
"test/",
"**/*.spec.ts"
],
"delay": 2500
},
"author": {
"name": "Faisal Alam",
"email": "[email protected]"
},
"license": "MIT"
}