-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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": "@cryb/portals",
"version": "1.0.0",
"description": "The microservice that queues, creates and closes VM instances",
"main": "dist/index.js",
"repository": "https://github.com/crybapp/portals.git",
"author": "JeDaYoshi <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist",
"dev": "tsc-watch --outDir ./dist --onSuccess \"yarn start\" --compiler typescript/bin/tsc",
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts --exit",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" yarn test",
"lint": "tslint src/**/*.ts{,x}"
},
"dependencies": {
"@google-cloud/compute": "^1.2.0",
"@kubernetes/client-node": "^0.11.1",
"axios": "^0.19.2",
"biguint-format": "^1.0.1",
"dockerode": "^3.1.0",
"dotenv": "^8.2.0",
"dots-wrapper": "^3.1.5",
"express": "^4.17.1",
"flake-idgen": "^1.1.2",
"google-auth-library": "^5.9.2",
"hcloud-js": "^1.2.0",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.11",
"morgan": "^1.9.1"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/ioredis": "^4.14.7",
"@types/jsonwebtoken": "^8.3.7",
"@types/mocha": "^7.0.1",
"@types/mongoose": "^5.7.1",
"@types/morgan": "^1.7.37",
"@types/redis": "^2.8.15",
"@types/ws": "^6.0.4",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"tsc-watch": "^4.1.0",
"tslint": "^5.20.1",
"typescript": "^3.8.2"
}
}