-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.48 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
{
"name": "intergalatic-federation",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:VictorAugDB/Intergalatic-Federation.git",
"author": "VictorAugDB <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ngneat/falso": "^3.1.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mockdate": "^3.0.0",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.0.0",
"git-commit-msg-linter": "^4.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": ">=10",
"mockdate": "^3.0.5",
"prettier": "^2.6.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"scripts": {
"prepare": "husky install",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/main/index.ts",
"swagger-autogen": "yarn build && node dist/docs/swagger.js",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:unit:verbose": "jest --watch --passWithNoTests -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:integration:verbose": "jest --watch --passWithNoTests -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"build": "tsc",
"typeorm": "ts-node-dev -r module-alias/register ./node_modules/typeorm/cli"
},
"_moduleAliases": {
"@": "src"
},
"lint-staged": {
"*.ts": [
"eslint 'src/**/*.ts' --cache --fix",
"yarn test:staged"
]
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.3",
"module-alias": "^2.2.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"swagger-autogen": "^2.20.5",
"swagger-ui-express": "^4.3.0",
"typeorm": "0.2.44",
"uuid": "^8.3.2"
}
}