forked from microfunctionsio/microfunctions-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "microfunctions-apis",
"version": "0.1.0",
"description": "microfunctions-apis",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "NODE_ENV=local nest start",
"build:docker": " docker build -t microfunctions-apis .",
"start:dev": "NODE_ENV=local nest start --watch",
"run:image": " docker run -d -t -i --env-file ./config.local.env --name microfunctions-apis microfunctions-apis ",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --forceExit ",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@kubernetes/client-node": "^0.12.0",
"@microfunctions/common": "^0.1.13",
"@nestjs/common": "^7.0.9",
"@nestjs/config": "^0.4.1",
"@nestjs/core": "^7.0.9",
"@nestjs/microservices": "^7.0.11",
"@nestjs/mongoose": "^7.0.9",
"@nestjs/passport": "^7.0.0",
"@nestjs/platform-express": "^6.7.2",
"@nestjs/terminus": "^7.0.9",
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.5.6",
"bluebird": "^3.5.0",
"chalk": "^2.0.1",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.1",
"crypto": "^1.0.1",
"edit-package-json": "^0.1.23",
"js-yaml": "^3.13.1",
"jszip": "^3.1.3",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.11.17",
"mongoose-timestamp": "^0.6.0",
"nest-winston": "^1.3.5",
"reflect-metadata": "^0.1.13",
"request-promise-native": "^1.0.8",
"rimraf": "^3.0.0",
"rxjs": "^6.5.4",
"winston": "^3.3.3",
"yaml": "^1.9.2"
},
"devDependencies": {
"@nestjs/cli": "^7.4.1",
"@nestjs/mongoose": "^7.2.3",
"@nestjs/schematics": "^6.8.1",
"@nestjs/testing": "^7.6.5",
"@types/express": "^4.17.2",
"@types/jest": "25.1.2",
"@types/node": "^13.1.6",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"fs-extra": "^9.0.0",
"jest": "^24.9.0",
"nock": "^9.2.3",
"prettier": "^1.18.2",
"request": "^2.88.2",
"sinon": "^4.0.0",
"supertest": "^4.0.2",
"ts-jest": "25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"resolutions": {
"@types/tapable": "1.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"testTimeout": 30000,
"rootDir": "test",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}