-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.86 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.86 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
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
113
114
115
116
117
118
119
120
{
"name": "autodeploy-api",
"version": "0.0.1",
"description": "Auto Deploy API",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"start": "ts-node ./src/index.ts",
"build": "tsc --project ./tsconfig.build.json"
},
"private": true,
"author": "",
"license": "ISC",
"devDependencies": {
"@entity-factory/core": "^0.2.1",
"@entity-factory/typeorm": "^0.2.1",
"@types/dockerode": "^2.5.20",
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.3",
"@types/koa": "^2.0.49",
"@types/koa__router": "^8.0.0",
"@types/module-alias": "^2.0.0",
"@types/yaml": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@koa/router": "^8.0.1",
"apollo-server-koa": "^2.9.3",
"class-validator": "^0.10.0",
"dockerode": "^2.5.8",
"dotenv": "^8.1.0",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"jsonwebtoken": "^9.0.0",
"koa": "^2.8.1",
"module-alias": "^2.2.1",
"p-event": "^4.1.0",
"p-retry": "^4.1.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"ts-vcenter": "^0.3.11",
"type-graphql": "^0.17.5",
"typeorm": "^0.2.19",
"yaml": "^1.6.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"semi": true
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"jest"
],
"env": {
"jest/globals": true
},
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/standard",
"prettier/@typescript-eslint"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none"
}
]
}
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"globalSetup": "<rootDir>/src/testSetup.ts",
"testEnvironment": "node",
"moduleNameMapper": {
"^API/(.*)$": "<rootDir>/src/$1"
},
"testRegex": ".*(test|spec)\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}